Jump to content

Database Insert Help


Crisp

Recommended Posts

For one row...

 

INSERT INTO db_table VALUES ('value_1', 'value_2', 'value_3', ..., 'value_n')

 

For multiple...

 

INSERT INTO db_table VALUES
('value_1', 'value_2', 'value_3', ..., 'value_n'),
('value_1', 'value_2', 'value_3', ..., 'value_n'),
('value_1', 'value_2', 'value_3', ..., 'value_n'),
('value_1', 'value_2', 'value_3', ..., 'value_n'),
('value_1', 'value_2', 'value_3', ..., 'value_n')

Link to comment
https://forums.phpfreaks.com/topic/47572-database-insert-help/#findComment-232235
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.