show databases
use raj
show tables
insert into BUILDING values ("SUN","Sunderraman Building")
select bcode from BUILDING
select bcode,bname from building
select *
from building
select * from building where bcode = 'SUN'
select * from building where bcode like 'L%'
select
rnumber,cap
from
room, building
where
bname = 'Langdale Hall' and
room.bcode = building.bcode and
cap >= 80;
describe room
select
rnumber,cap
from
room,building
where
room.bcode=building.bcode and
cap >= 80 and
room.bcode = 'LANGDL';