Computer Science, asked by madhurcm79, 4 months ago



28.How can we add a new column in a table? Give example.
29. Write a query that selects all orders except those with zero or null in the amt field from table order.​

Answers

Answered by somyaboy
0

Answer:

First, specify the name of the table in which you want to add the new column. Second, specify the name of the column, its data type.

Explanation:

ALTER TABLE table_name ADD column_name data_type column_constraint; In this statement

Similar questions