For All Human Beings.......

Monday, November 26, 2007

Database Concepts : Mind Map

FreeMind Mind Map
  • I have created this Mind Map to facilitate Organized learning and revision of the topic-'Database Concepts'.
  • I have published my work for sharing on freemindshare.com
  • The URL for this particular Mind Map is:
http://freemindshare.com/map/iq29ILNSUV/



1 comment:

sumedha said...

answer to question 2
create table movie
(num number,
title varchar2[50],
ty varchar2[10],
rating varchar2[20],
stars varchar2[20],
qty number,
price number[4,2],
);
insert into movie
values(1, 'oso','comedy/drama','G',
'SRK',4,125);
a. select ty
from movie
where 'ty=comedy'
orderby ty asc;
b. select title
from movie
where price>30 and price<=06;
c. select ty
from movie;
d. select title,qty
from movie
where title like 't%';
e. 1) 50
2) drama
horror
comedy
scifi
3) 1
4) gone with the wind
friday the 13th
independence day
risky business
101 dalmatians
f)select title,price
from movie;
g)select ty
from movie
where ty like ty='horror'and
ty='drama'
orderby title desc;