P1
P1
-- 4.c) Delete all the salesmen whose salaries are equal to Rs. 3500
DELETE FROM salesman WHERE salamt = 3500;
-- 4.e) Add a column called "Telephone" of data type "Number" and size "10" to the
client table
ALTER TABLE client ADD (telephone NUMBER(10));
-- 4.h) Create a new table sales_order_new from sales_order containing data as well
as structure
CREATE TABLE sales_order_new AS SELECT * FROM sales_order;