0

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?

reformed
  • 4,505
  • 11
  • 62
  • 88

0 Answers0