Write a query to add the column DOB of data type date in table Student.
Answers
Answered by
1
Answer:
SQL add column is used to add column operation into the existing SQL table.
...
If we want to add multiple columns to the existing table using any single statement, we can use the below syntax:
ALTER TABLE table_name (Name of the table)
ADD [COLUMN] column_definition, (for adding column)
ADD [COLUMN] column_definition,
Explanation:
please mark me as brilliant
Similar questions