Create Table in Sql/oracle.
create table student
(
rollno number,
name varchar(30),
address varchar(30),
branch varchar(5),
phone no
):
"create table" is keyword use to define the table name and student is name of table
roll no , name etc are the attributes and number varchar are their data type.