How would I make a query to INSERT
repeating data into several rows in a database? I have an auto incremented field id so I feel a simple
INSERT INTO table_name (column, column)
VALUES ('data', 'data')
should be fine but not sure how to make it do it multiple times.