Computer Science, asked by avantikadeepak372, 13 days ago

write a SQL syntax of add an attribute to the existing table​

Answers

Answered by ashokpage123
1

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