Multiple insert statement in SQL

INSERT INTO table_name
      SELECT 'value1'
UNION SELECT 'value2'
UNION SELECT 'value3'

Comments