代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/457914/7315562
sql createdb.sql
CREATE TABLE BOOK
(
PAuthor varchar(20),
Title varchar(40),
ISBN varchar(20),
PublisherID varchar(20),
Edition varchar(20),
DateOfPub date,
Price decimal(4,2),
Description varchar(100),
PR
www.eeworm.com/read/457825/7317345
sql infoprocsystem.sql
www.eeworm.com/read/457732/7318622
sql hotel.sql
www.eeworm.com/read/457606/7322408
sql personnel.sql
www.eeworm.com/read/457530/7324543
sql personnel.sql
www.eeworm.com/read/457257/7330306
doc sql.doc
www.eeworm.com/read/457187/7332948
sql numbers.sql
declare
x number(5);
begin
x:=&x;
if x in(5,6,8,9,15,20,55,33) then
dbms_output.put_line('x is available in list');
else
dbms_output.put_line('x is not available in list');
end if;
end;
/
www.eeworm.com/read/457187/7332949
sql exceptionwithdivision.sql
declare
a integer:=&a;
b integer:=&b;c number;
begin
c:=a/b;
dbms_output.put_line('division of a n b is '||c);
exception
when zero_divide then
dbms_output.put_line('a is divided by zero ');
e
www.eeworm.com/read/457187/7332950
sql nosbetween.sql
declare
x number(5);
begin
if x between 1 and 500 then
dbms_output.put_line('x is available in list');
else
dbms_output.put_line('x is not available in list');
end if;
end;
/