Jump to content

[SOLVED] inserting data


182x

Recommended Posts

hey guys just wondering why the below syntax only works with some versions

 

INSERT INTO test
VALUES ('', 'J', 'j', 'a', 't', 'e'),
VALUES ('', 'J', 'h', 'e, 't', 'f');

 

but sometimes it has to be  the following. Is the short hand method wrong?

 

INSERT INTO test VALUES ('', 'J', 'j', 'a', 't', 'e');
INSERT INTO test VALUES VALUES ('', 'J', 'h', 'e, 't', 'f');

Link to comment
https://forums.phpfreaks.com/topic/59979-solved-inserting-data/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.