How to insert data in a table ??
Answers
Answered by
9
Answer:
To insert a row into a table, you need to specify three things:
▪First, the table, which you want to insert a new row, in the INSERT INTO clause.
▪Second, a comma-separated list of columns in the table surrounded by parentheses.
▪Third, a comma-separated list of values surrounded by parentheses in the VALUES clause
❤❤❤
Similar questions