I\'m looking for a way to do multiple row inserts when I\'m only inserting data for a single column.
Here is the example table:
+-------+-------------+--
your syntax is a bit off. put parentheses around each data "set" (meaning a single value in this case) that you are trying to insert.
INSERT INTO User_Roll(name) VALUES ('admin'), ('author'), ('mod'), ('user'), ('guest');