SQL question… write the sql command of the below
Attachments:
Answers
Answered by
1
Answer:
answers
Explanation:
create table fee_s(rollno number(3) primary key,
name varchar2(10),
class number(3),
fees number(6));
insert into table fee_s (&rollno,'&name',&class,&fees);
insert into table fee_s(03,'Anes',10,2000);
insert into table fee_s(04,'Ashish',2000);
select * from fee_s;
select * from fee_s where fees> 1000;
select name from fee_s where fees order by asc;
Similar questions