Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created June 12, 2021 21:24
Show Gist options
  • Select an option

  • Save bartubozkurt/17ec654efb73b36d97affa781f14b5e8 to your computer and use it in GitHub Desktop.

Select an option

Save bartubozkurt/17ec654efb73b36d97affa781f14b5e8 to your computer and use it in GitHub Desktop.
INSERT statement is used to insert a single record or multiple records into a table in SQL Server.
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment