The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

Syntax error:MySQL Insert Select

I have this query to insert into tbl_userprofile: $SQL = "INSERT INTO tbl_userprofile (userId, name, surname, gender, nationality, address, mobile, department, email, question, answer) SELECT ...
0
votes
1answer
34 views

New to sql, how to insert column values into new column?

What I have: ALTER TABLE countryb ADD gnppercap real ; INSERT INTO countryb (gnppercap) SELECT gnp/population FROM countryb ; I successfully created the column "gnppercap", now I want to ...
0
votes
0answers
41 views

INSERT SELECT only for new records

I've got this sorted out, but I'm going to post it anyway in case anyone else has a similar issue. I have two tables. They have a one to one relationship around a common key, called ID in the first ...
0
votes
1answer
53 views

MySQL IF…ELSE or IF EXISTS statements

Quick question. I am currently using INSERT... SELECT statement to check a user has a basic member account before they become a coach. This code works fine: INSERT into coaches (U_Name, P_word, M_ID) ...
1
vote
2answers
70 views

WEBMETHOD: Add details of two columns into third column

I found many answers related to this but its not working pretty well with my code. I WANT THE CODE IN MY WEBMETHOD in C# which I will be calling on android platform. I have two columns, Firstname ...
1
vote
2answers
109 views

INSERT SELECT not working

Using Informix 11.7, I'm trying to execute a INSERT SELECT query with jdbc positional parameters in the select statement like this : INSERT INTO table1(id, code, label) SELECT ?, ?, ? FROM table2 ...
1
vote
1answer
86 views

ORACLE: INSERT SELECT FROM 2 views and value from param

I'm trying to insert some fields into MYTABLE from views MYVIEW1 and MYVIEW2 and then add a value from a parameter (this is part of a stored procedure) for UPDATED_BY, SYSDATE for UPDATED_ON. How can ...
0
votes
0answers
104 views

Postgresql: faster alternative to SELECT DISTINCT ON

I have a problem with copying filtered data from one table to another (with similar structure). Basically, I have one big table with about 11 billion rows, and I'd like to copy to another table ...
1
vote
5answers
73 views

INSERT INTO…SELECT FROM

i want to put calory as the first value of fruits, i couldn't do it, can anyone help? $sql = 'INSERT INTO fruits VALUES('', ?, ?, ?)' SELECT calory FROM diet WHERE ...
0
votes
1answer
472 views

SQL: Copy one row multiple times, changing one value each time

I have a row of data in a table: Key | Val1 | Val2 ----+------+----- 1 | A | B I would like to copy this row, but assign each new row a different key (actually a foreign key) from a list: New ...
1
vote
0answers
39 views

Merging a user's object relationships to another user, with a condition, in mysql

this is my first ever S.O. question :) I am trying to "merge" a temp user to an existing user, and all their associated object relationships - one being "post_relationships" The problem is.. if both ...
0
votes
2answers
2k views

SQLITE equivalent for Oracle's ROWNUM?

I'm adding an 'index' column to a table in SQLite3 to allow the users to easily reorder the data, by renaming the old database and creating a new one in its place with the extra columns. The problem ...
0
votes
0answers
194 views

INSERT multiple rows FROM a select FOR EACH match in another query

I am having trouble with the syntax for my query and again it may be due to my lack of knowledge of JOIN's which is steadily improving. Here is the singular version of the INSERT query I am trying to ...
1
vote
4answers
126 views

How to speed up INSERT SELECT with join over string

I want to call insert select and I try to use this select (with help from this INSERT SELECT query when one column is unique) SELECT minids.userid, username, password, full_name, country, email, ...
2
votes
1answer
260 views

INSERT SELECT query when one column is unique

I need to call INSERT + SELECT to import user data to different table and I need to filter user_name duplications, So I need something like this: INSERT INTO new_table SELECT email, distinct ...
0
votes
3answers
79 views

Inserting unique rows without updating old ones

I have two similar tables in different databases, I want to insert into one from the other one. At the same time I want to ensure that every time mySql encounters a 'duplicate id' error it inserts the ...
1
vote
2answers
54 views

How to copy a table and add a field with MySQL?

I would like to copy a table A into a table B with INSERT ... SELECT without declaring all fields in MySQL. But the issue is my table B has an auto-increment field at the beginning called id: ...
0
votes
2answers
1k views

Select Inside Insert Statement - MySQL Cursors

I tried some, but I couldn't find the solution, somehow I managed to get this result. Here is the query: DELIMITER ## CREATE PROCEDURE test1(start_date DATE,end_date DATE) BEGIN DECLARE done INT ...
0
votes
2answers
75 views

Mysql Update / Insert: copying historical data

I have some historical data tables in my Mysql database. I want to repeat a day's historical data for another day in the same table. Table structure, with some sample data: Id | Date | Value ...
0
votes
1answer
198 views

MySQL INSERT-SELECT multiple rows from versioned table

I've got 2 versioned tables like this: Items: ID rev_id name deleted Subitems: ID rev_id name parent_id deleted What i understand from http://kristiannielsen.livejournal.com/6745.html that ...
-1
votes
5answers
117 views

Error Inserting into Database from Java

I pass the following string to a method to perform an Insert, However each time I try to do this, I get an error. PropInsert = "INSERT INTO Image_has_Props (Image_ImageID, Props_PropID), SELECT ...
0
votes
3answers
250 views

php mysql insert select multiple with where clause

I have a following Table1 : userid, who, share, date :: id is auto increment and primary key I would like to build a query to check if record exist and insert new record if is empty. How to build ...
0
votes
1answer
250 views

INSERT INTO…SELECT…WHERE with null if condition fails

I'm attempting to do something like the following: INSERT INTO `File` (`Name`, `Owner`) SELECT @File, `Users`.Id FROM `Users` WHERE `Users`.`Name` = @UserName However, if there is no match in the ...
1
vote
1answer
1k views

TSQL: WITH cteTABLE insert into other_table [duplicate]

Possible Duplicate: Incorrect syntax near the keyword 'with'…previous statement must be terminated with a semicolon I want to select hierachical data and insert it in a ...
0
votes
1answer
111 views

Insert rows into different table in MYSQL

I'm trying to re-map some data within my mysql database. I want to move content within a table called category_article to another table called article_tag. I want to move a single field (article_id) ...
1
vote
2answers
543 views

SQL Local Variable

I use SQL Server 2005 and I have a query like this : INSERT INTO [subject] ([sch_id], [subj_from], [subj_to], ) SELECT CASE WHEN (SELECT @sched = ...
1
vote
2answers
786 views

SQL Insert-Select Statement

I use Visual Basic 6.0 with SQL Server 2005 Here is my code : Cn.Execute "INSERT INTO schedule (sch_name, st_id, sch_note) SELECT '" & txtSchedname.Text & "', st_id, '" & ...
0
votes
3answers
935 views

INSERT INTO SELECT from UPDATE

I need to select some values from a table to be updated, and then update them right away. Furthermore, I need to insert one new record in a table for each updated record. To select records and update ...
1
vote
4answers
5k views

MySql Insert Select uuid()

Say you have a table: `item` With fields: `id` VARCHAR( 36 ) NOT NULL ,`order` BIGINT UNSIGNED NOT NULL And: Unique(`id`) And you call: INSERT INTO `item` ( `item`.`id`,`item`.`order` ) ...
0
votes
1answer
368 views

MySQL Replication of INSERT… SELECT with ORDER BY

The documentation page for INSERT ... SELECT states that for INSERT ... SELECT to work with replication, an ORDER BY some column must be used so that rows may be inserted in a predictable order, ...
2
votes
2answers
104 views

Need an INSERT …SELECT statement, but I also want to manually set some fields

I need an insert statement that will do roughly this: INSERT INTO tblContent(postTitle, postBody, postAuthor, postDate, postApproved, fromSite) SELECT tblSubmissions.body WHERE ...
0
votes
1answer
287 views

inserting and viewing data simultaneously from a single table

i want that as a user is inserting data into a table, he is also viewing it simultaneously. for this if i use a single table, then will it take more time & processing load because the 2 ...
0
votes
2answers
108 views

SQL: flavours of INSERT INTO

(MySQL) I am trying to migrate a "subscription" table into 3 new tables: "product", "subscription", "actual" where "actual" is the name of the actual product, say, newsletter. The subscription has a ...
0
votes
1answer
1k views

MySQL Conditional INSERT

I want to do a conditional insert with MySQL. I have 2 tables (Car and CarType). The Car table got a coloumn called typeId, which points to an entry in the CarType table. I only want to insert a ...
0
votes
2answers
105 views

Transfering data within a MySQL db from one table to another with sql statement

I have consolidated a joined table with it's related entity as the relationship was one-to-one. So now the original ww_staff table holds the ww_contacts details directly. I wrote the following ...