Answers for "Write a SQL statement to add a column to table"

SQL
0

T-SQL Add Column

ALTER TABLE sales.quotations 
    ADD 
        amount DECIMAL (10, 2) NOT NULL,
        customer_name VARCHAR (50) NOT NULL;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on August-10-2021

Code answers related to "Write a SQL statement to add a column to table"

Code answers related to "SQL"

Browse Popular Code Answers by Language