0 votes
in Sql by
What is the syntax to add a record to a table?

1 Answer

0 votes
by
To add a record in a table INSERT syntax is used.

For Example,

INSERT into table_name VALUES (value1, value2..);
...