SQL Create Modify
SQL Create Modify
(c_no varchar2(5),
book_no number(2),
title varchar2(25),
author varchar2(20),
price number(3),
publication varchar2(10),
sub_no number(8)
);
2. modifying colm:
SQL> Alter table student
modify(r_no integer(5));
3. remove/del/drop table:
SQL>drop table student