Created
June 12, 2021 21:26
-
-
Save bartubozkurt/ad7c520c7490ff384c260f4c49db9faf to your computer and use it in GitHub Desktop.
If you are adding values for all the columns of the table, you do not need to specify the column names in the SQL query. However, make sure the order of the values is in the same order as the columns in the table.
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 | |
| VALUES (value1, value2, value3, ...); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment