The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
43 views

Can someone tell me what i did wrong here [closed]

< mysql_query("INSERT INTO beta_testk (id, entrancex, entrancey, entrancez, exitx, exity, exitz, adress, owned, owner, value, hint, virtualworld, lock, rent, rentabil, takings, level, freeze, ...
3
votes
2answers
64 views

Insert CSV line by line Into Postgres using PHP PDO

I am trying to have the user upload a file and then have the file be inserted into a postgres database line by line. I have this code and I am getting the following error with my syntax: Array ( ...
-1
votes
1answer
52 views

How can we get the data into the mysql database? [closed]

We have webpages created in order to add a user to the website, though the pages don't seem to carry the variables from one page to the next to be put into the database. The first page is the sign ...
1
vote
1answer
29 views

INSERT INTO Linked SQL Server

I have a need to bulk insert circa 1m rows from one SQL Server (A) to another (B) on a daily basis. Server A hosts the records, and has access to Server B as a linked server. Both are SQL Server ...
0
votes
2answers
47 views

php sql insert into not working [closed]

I am new to php coding for some reason my code isn't inserting anything into the table. I've been working on this problem for a few hours and I can't figure it out at all. I use php my admin and I ...
0
votes
0answers
25 views

How to add insert into and log on pdo

I have an sql to add over 100 field to mysql database. I want to include coding for PDO to avoid this sql injection thing but, i'm new to all of this and really I do not know how nor truly understand ...
-2
votes
2answers
50 views

How do I insert into a form with over 100 fields

I've created a user form in which once the submit button is pressed I would like to send/insert the data to mysql database adding a new record. The form has over 100 input fields. How can I accomplish ...
0
votes
1answer
42 views

php insert to mysql multiple inputs over 100

I've created a user form in which once the submit button is pressed I would like to send/insert the data to mysql database adding a new record. The form has over 100 input fields. How can I accomplish ...
1
vote
1answer
41 views

How to update all fields from one table to another table in the same database using mySQL?

There are 2 tables in the same database with the same structure. I want to copy all data from one table to the other table using mySQL. The source table may have the same, less or more number of rows ...
1
vote
1answer
145 views

Rails 3.2 + MySQL: Error: Field 'created_at' doesn't have a default value: INSERT INTO

I created a new migration, where is mentioned ... t.timestamps in the created table are added these two columns ... | created_at | datetime | NO (Null) | | NULL (Default) | ...
0
votes
1answer
68 views

Export Excel Spread Sheet to Access Table with A Timestamp?

I currently use a set up like the one below. Set AccessConn = CreateObject("ADODB.Connection") sExcel = "[Excel 8.0;HDR=YES;IMEX=2;DATABASE=" & ThisWorkbook.FullName & "].[Sheet1$]" ...
0
votes
1answer
38 views

Asp.net Insert Into query local database (acess)

I am not very good at running sql queries to a local database - Microsoft Access. I am trying to write a code where when a user register their details, it insert it into the database. I have wrote ...
-1
votes
3answers
57 views

Inserting multiple values into a MySQL at once

could anyone shed some light as to why this PHP / MySQL is not working? Basically I need to insert loads of rows at once from a form, so there will be multiple name fields, multiple short, med, long ...
0
votes
6answers
97 views

PHP Mysql Query (INSERT) Issue

I am having an issue with a MySQL query as follows: My script generates this as an example query: INSERT INTO `contacts`(`name`, `phone`, `email`, `city`, `state`, `date`) VALUES ('Test2', ...
0
votes
1answer
57 views

Insert new row using data returned by SELECT statement

I have seen similar posts on this but have not found my exact issue and an answer. What I am trying to do is update a table with data from a variables and from data from a select statement. For ...
0
votes
1answer
48 views

VBA: Arthimetic overflow converting int to data type numeric

I am trying to insert data into a temp database in SQL Server 2012. This is my data, and the datatype used: 1234ab nchar(25) NOT NULL primary key 240 smallint 4535ab nchar(10) 04/01/2013 date ...
2
votes
1answer
124 views

F# OleDb Syntax Error in INSERT INTO Statement Pulling Data from Access to Linked SQL Server

I'm running an F# application to pull data from an Access table to a linked SQL Server table. Here is the resulting query: INSERT INTO dbo_TempTerm (UnitID, PolicyTermYear, InsuredName, PolicyNumber, ...
0
votes
2answers
194 views

Conditional INSERT INTO statement in postgres

I'm writing a booking procedure for a mock airline booking database and what I really want to do is something like this: IF EXISTS (SELECT * FROM LeadCustomer WHERE FirstName = 'John' AND Surname = ...
0
votes
1answer
61 views

In MySQL, how do I insert 1 when string value is 'true', 0 when false, while preserving nulls

I am using an INSERT query that SELECTs from a plain-text database into a more query-friendly database. The following is simplified a lot to prevent confusion with unnecessary information, if I've ...
0
votes
1answer
87 views

Is there a way to do a “INSERT INTO with auto_increment if not exists”?

I have a table that looks like this: | ID | int PRIMARY | Name | varchar | timestamp | timestamp How do I do this knowing an ID? To show you better what I want, here's an example using two ...
0
votes
3answers
204 views

PHP: Saving multiple checkbox values in SQL

I'm trying to make a form that writes away multiple checkbox values in a single SQL record I have some code so far, but i have no idea what i'm doing wrong. Here's what i have: (my table that ...
2
votes
2answers
82 views

Forbid insert into table on certain conditions

I have a SQL Server 2008 database. There are three terminals connected to it (A, B, C). There is a table SampleTable in the database, which reacts to any terminal activity. Every time there is some ...
0
votes
1answer
80 views

insert multiple values from one table to another

I want to insert multiple rows with different value into one table from anthor table which have some device_id but it gives error this is my query MySqlCommand cmd = new MySqlCommand("INSERT INTO ...
-1
votes
1answer
55 views

Mysqli 2 records being created with one insert

I am using the following form to create a photo album, it submits the data to a processing script which then deals with the files and enters data into the database. THIS IS THE SUBMIT FORM : ...
0
votes
0answers
107 views

VBA MySQL : how to write from excel into MySQL table

I would like to export some data contained in my spreadsheet into a MySQL DB. Here is my connection code to my DB : Sub connectionmysqldb() ' Connection variables Dim conn As New ADODB.Connection ...
0
votes
2answers
127 views

Make Sum in SQL and save it to another table in SQL with PHP?

Hi I had searched a lot on this site for help, but more I search more I'm confused. I have one table competition where there is field ID(primary key) Player *TeamName*(3 players in a team) and ...
0
votes
0answers
55 views

PHP: MySQL INSERT INTO Producing blank table entries

I've created a simple login system in PHP, however after coming back to my code after several weeks, I'm left stumped as to why my INSERT INTO query does not function properly; $query = ...
0
votes
0answers
53 views

How to insert data into top of a column

I'm looking to figure out how to insert values into the top of columns in a temp table with data using a mysql database. The query i've written returns multiple results and concats them into 1 ...
0
votes
3answers
43 views

SQL - how to retrieve mutlple rows from a table, and then take that info and dump it into a new row on a different table

I want to take rows from one table, based on a typeID number, and insert a new row into a different table using a mix of data from the first table query and some static variables . Is there a easy ...
1
vote
2answers
250 views

Data Conversion with DatePart in an MS access select query

I am trying to use DatePart() within a MS Access select query to extract a month and year-- as a number-- from a date which is initially in a string form of "YYYY-MM-DD HH:NN:SS.0000000" The ...
3
votes
3answers
207 views

update profile php

I have create a profile page in php. The page includes the address and telephone fields and prompts the users to insert their data. Data are then saved in my table named profile. Everything works ...
1
vote
2answers
146 views

How to INSERT INTO…SELECT with ON DUPLICATE KEY

I have two tables with identical structure. Table A contains all the current ads, Table B contains the archived ads. Column 1 (ad_id) is Primary Key, AI, INT. Table engine is MyISAM. I need to copy ...
1
vote
3answers
108 views

MySQL loop to inserting combine values

I have a little problem, I'd like to INSERT INTO myTable (id_product, id_tag) combined values I know the method will be: INSERT INTO myTable values (value1a, value1b),(value2a, value2b) But ...
0
votes
3answers
89 views

Data migration script INSERT INTO

I've created following SQL code to migrate our database. The UP query is working fine, but I just can't figure out how to fix the DOWN query. I just want to insert all data that is in the ...
0
votes
1answer
100 views

Inserting unique value into database PGSQL/MSSQL

I'm trying to insert unique records in a MSSQL and Postgresql DB using insert into where not exists. But I am getting a incorrect syntax error as seen below. What am I doing wrong? INSERT INTO ...
0
votes
2answers
154 views

PHP/MySQL code fail to insert duplicate row

I have some PHP code to select data from & insert data into a MYSQL database. Here's what I'm trying to do: - receive a barcode serial number from a JSON payload - connect to the MySQL database - ...
0
votes
1answer
160 views

INSERT INTO SELECT - replace one field with NULL

I'm trying to perform an INSERT INTO SELECT statement, but while I'm doing it I would like one of the fields within the SELECT statement to return NULL rather than what's in there originally. So far ...
0
votes
0answers
7 views

INSERTINTO statement error

I want to insert textbox1.text value into database but it is not going as per my need, i did the following coding. Private Sub ConnectToSQL() Dim con As New SqlConnection Dim cmd As New ...
0
votes
2answers
88 views

SQL Insert Statement with Null?

Im trying to insert data into a table which has an attribute that can be Null. However, im not sure how to accomplish this with my SQL statements. INSERT INTO [dbo].[INVOICE] ([INV_ID] ...
1
vote
5answers
60 views

insert doesn`t work why?

the table is generated from xml and it look like this CREATE TABLE orders (id INTEGER AUTO-INCREMENT PRIMARY KEY , id_room INTEGER, nr_table INTEGER, id_user INTEGER, id_payment INTEGER, total ...
1
vote
0answers
263 views

Slow INSERT INTO SELECT statement – not repeatable

Short Version: INSERT INTO SELECT into a table with fulltext index with the same data takes sometimes 25 seconds and sometimes 2500 seconds. We have no idea where this huge gap is coming from. Long ...
0
votes
1answer
57 views

How do i array[n][i] = 0 as an append in python

I have the following code: for i in range(w[n], W): array[n][i] = v[n] In python this give an out of index error because I am not using append...how would I right the above in order to work in ...
1
vote
3answers
1k views

How to add a row number to new table in SQL?

I'm trying to create a new table using an existing table already using: INSERT INTO NewTable (...,...) SELECT * from SampleTable What I need to is add a record number at the beginning or the ...
3
votes
3answers
153 views

sql statement isnt saving any data into table

Whenever I execute my C# code everything goes well, no compiler errors, nothing. But when I go to look at my table in the server explorer, nothing was inserted. Restarted Visual Studio, still ...
1
vote
2answers
136 views

Select value of one column from another table and provide other values explicitly

I have 2 tables: cities(city_id|Serial, city_name|Text, state_id|Integer) states(state_id|Serial, state_name|Text) I want to insert a row in cities having city_name as "PortBlair", and the ...
0
votes
0answers
140 views

insert into a table from different database

I want to migrate database. What I know works is: INSERT INTO NewDB.dbo.NewTable SELECT col1, col2, col3 FROM OldDB.dbo.OldTable; However, I want to be able to have a variable to assign the old ...
1
vote
2answers
58 views

Should I Replace Multiple Float Columns with a BLOB?

How would a single BLOB column in SQL Server compare (performance wise), to ~20 REAL columns (20 x 32-bit floats)? I remember Martin Fowler recommending using BLOBs for persisting large object graphs ...
0
votes
0answers
54 views

Execute 2 INSERT INTO queries, the first giving the data for the second

I have a main table 'contact' which houses all of my contact info. The problem is that I have some fields for one type of contact that are not in another. For example, if someone is going to create ...
0
votes
3answers
291 views

How can I get the current ID number with INSERT INTO? [duplicate]

Possible Duplicate: php/MySQL insert row then get 'id' How can I do get current ID number with INSERT INTO? mysql_query("INSERT INTO mytable(id,a,b) VALUES(null,3,current ID) "); ...
0
votes
1answer
325 views

PHP/MySQL: INSERT INTO with variable column name not working

I've used INSERT INTO hundreds of times, but it has been a while and I have been driving myself crazy on this one: //Database Connection $movieID = 41154; $userID = 15; $vote = 'yes'; $postVote = ...

1 2 3