We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
SQL
Create database < Database name>;
Create database XII; Use < Database name>; Use xii;
create table students
( rollno integer Primary Key, name varchar(20) not null, age integer, class varchar(8), fee integer, dob date, sex char(1), per integer, city varchar(20) );