vote up 2 vote down star

When I do SELECT statements in PHP code I always select named columns, like:

SELECT id, name from users;

rather than using:

SELECT * from users;

This has the advantage of being more informative and readable, and also avoids problems later if new columns are added to the table.

What I'm wondering is, is it possible to use the same idea in an INSERT statement? I'm imagining it might be something like this:

INSERT into people values (id=1, name="Fred");

The syntax as I've shown in this example doesn't work, but I wonder if something equivalent is possible? If not, does anyone know why not? Is it a deliberate omission?

Ben

flag

Wow! I've been wanting to do this for ages, and it turns out that it was easy, and that pretty much everyone else apart from me already knew about it. I love Stackoverflow... – Ben Jan 14 at 15:12
If you have another SQL Question, look here sqlzoo.net . It helped me a lot. – Peter Jan 14 at 18:57
Good tip -- thanks Peter! – Ben Jan 17 at 12:59

9 Answers

vote up 1 vote down check

That's syntax is possible with MySQL only. Afaik, other RDBMS doesn't allow that. Here's the syntax:

INSERT INTO games SET yr = 2012, city = 'London';

I wish PostgreSQL facilitated this kind of insert syntax

Standard ANSI syntax, however, would be

INSERT into people (yr, city) values (2012, 'London');

link|flag
I like this much better than the other way -- thanks! – Ben Jan 14 at 15:30
The other method, however, is standard SQL, and portable to any standard-compliant RDBMS. – Harper Shelby Jan 14 at 15:33
@Harper: That is an important point, but for me the MySQL-only version is fine, as I'm not writing production software, just stuff for doing things for me, and I'm only ever going to use MySQL... I think... :-) – Ben Jan 14 at 15:38
You're going to be kicking yourself some time in the future for not doing it the standard SQL way. – Paul Tomblin Jan 14 at 18:35
It unportable and I can not see the gains in any way. – Friedrich Jan 15 at 6:27
show 3 more comments
vote up 2 vote down

Using standard syntax, you can insert multiple rows at once:

INSERT INTO Table (column1,...,columnN) VALUES
(r1v1, ..., r1vN),
(r2v1, ..., r2vN),
(r3v1, ..., r3vN).

This is MUCH faster way of importing data, than one-row-a-time (especially in MySQL)! I don't think you can do the same using

INSERT INTO Table SET column1 = r1v1, ..., columnN = r1vN

syntax.

(From personal experience, inserting 300000 rows one row a time took several minutes. When I changed the script to use few insert statements only, each inserting several thousands of rows, it took only few seconds to import it all, MySQL 5.0).

link|flag
vote up 3 vote down

the syntax for this case is

INSERT into people (id, name) values (1, 'Fred');

at least it works in the dbms i use (PostgreSQL)

link|flag
vote up 4 vote down

Use INSERT INTO <table> (col1, col2) VALUES (1,2).

link|flag
vote up 3 vote down

Try it this way: INSERT INTO people (id, name) VALUES (1, "Fred");

link|flag
vote up 5 vote down

what you want is

INSERT INTO PEOPLE ( id, name ) VALUES ( 1, 'FRED' )
link|flag
vote up 4 vote down
INSERT INTO table (column_1, column_2, column_3, ...)
VALUES (value_1, value_2, value_3, ...)
link|flag
vote up 5 vote down
INSERT into people(id,name) values (1, 'Fred');
link|flag
this is correct, except you want single quotes instead of double quotes. – Ryan Guill Jan 14 at 15:09
Thanks, I cut and pasted and didn't fix that part. Plus jmien beat me to it by about 10 seconds. – Paul Tomblin Jan 14 at 15:16
vote up 25 vote down
INSERT INTO table_name (column1, column2, column3,...)
VALUES (value1, value2, value3,...)

INSERT INTO people (id, name)
VALUES (1, 'Fred');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.