SQL for adding multiple values in one insert


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. INSERT INTO the_table (column1, column2)
  2. SELECT 'one', 'two' UNION
  3. SELECT 'three', 'four' UNION
  4. SELECT 'five', 'six'

URL: http://forums.adobe.com/message/2138963

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.