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..);

Related questions

0 votes
asked Jun 15, 2023 in Sql by Robin
0 votes
0 votes
asked Dec 15, 2020 in Sql by SakshiSharma
...