Created
June 12, 2021 21:24
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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