You can apparently interchangeably include or omit INTO
in INSERT
statements at least both in MySQL and SQL Server:
-- works:
INSERT INTO Table (Column) VALUES (1);
-- also works:
INSERT Table (Column) VALUES (1);
Why is this and which approach should be taken?