Login
Remember
Register
Ask a Question
What is the syntax to add a record to a table in SQL?
0
votes
asked
Jul 8, 2020
in
Sql
by
Robindeniel
What is the syntax to add a record to a table?
#sql-add-record
#syntax-add-record-sql
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 8, 2020
by
SakshiSharma
To add a record in a table INSERT syntax is used.
For Example,
INSERT into table_name VALUES (value1, value2..);
...