Internet Cyclone Is a powerful Internet tool for Windows 7, 9x, NT, 2000, 2003 and XP created to modify your Windows registry settings in order to speed up internetconnection Speed up to 200%.
After you upgrade your internet connection you can still use the software because It is fully compatible with all hardware.
Internet Cyclone Main Features:
- Speed up internet to 200% in just a few seconds.
- It's compatible with all modems and high-speed LAN, ISDN, CABLE, DSL, T1 or other internet connections .
- It will speed up video streaming like Youtube, Metacafe, Google, etc.
- It will speed up web surfing, online gaming, e-mailing, etc
create table book(booknum int,bookname varchar(25),author varchar(25),publisher varchar(20),price int)
ReplyDeletecreate table members(memberid int,membname char(10))
create table transact(id int,bookno int,remark char(20))
insert into book(booknum,bookname,author,publisher,price)values(101,'java','balaguru','abc books',280)
insert into book(booknum,bookname,author,publisher,price)values(102,'os','abbas','abc books',500)
insert into book(booknum,bookname,author,publisher,price)values(103,'mp','balaguru','abc books',350)
insert into members(memberid,membname)values(1,'sam')
insert into members(memberid,membname)values(2,'pilu')
insert into members(memberid,membname)values(3,'ponnan')
insert into transact(id,bookno,remark)values(1,103,'return')
insert into transact(id,bookno,remark)values(2,101,'return')
insert into transact(id,bookno,remark)values(3,102,'return')
select members.memberid,members.membname,book.author,book.publisher,transact.remark from members,transact,book where memberid=id and booknum=bookno;