LIKE command
select stdName,stdAddress from student where stdName like 'ABC'
there is some good c ,java, sql and vb6 programs,Windows tricks, sms shorthand etc
select stdName,stdAddress from student where stdName like 'ABC'
You can shrink Windows 7’s oversize taskbar icons by right-clicking the taskbar,choosing Properties, and selecting Use small icons. This option shrinks the size of the taskbar by half, giving you a few extra millimeters of vertical screen space.
RUN THIS COMMANDcreate table tb1(id number);
IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
declare
vid number:=0;
begin
while(vid<=10)
loop
insert into tb1(id)
values(vid);
vid:=vid+1;
dbms_output.put_line(vid);
end loop;
end;
create table tb1(id number);
RUN THIS COMMAND, IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
declare
vid number:=0;
begin
for vid in 1..10
loop
insert into tb1(id)
values(vid);
dbms_output.put_line(vid);
end loop;
end;