Just discovered one of those things I should have discovered a long, long time ago: in MySQL (and, I assume, every-other-SQL), this:
insert into table (field1,field2,field3) values (1,2,3) insert into table (field1,field2,field3) values (4,5,6) insert into table (field1,field2,field3) values (7,8,9)
…can also be expressed like this:
insert into table (field1,field2,field3) values (1,2,3), (4,5,6), (7,8,9)
The difference is that the second form, especially if you’ve got lots of inserts to do, is much, much faster.
Comments
Windows Vista build 5270
Windows Vista build 5270 Download: http://windows.czweb.org/491_H…
Windows VISTA Activation: http://windows.czweb.org/502_W…
Download Windows Vista Official 113 Icons:
http://windows.czweb.org/504_D…
Add new comment