create table Student(Sno char(3) primary key,Sname char(8) not null,Ssex char(2) not null,Sbirthday datetime,Class char(5));create table Course(Cno va...
分类:
数据库 时间:
2015-04-26 10:38:30
阅读次数:
213
替换变量与绑定变量:SQL>definex=‘abc‘--定义变量SQL>definexDEFINEX ="abc"(CHAR)SQL>select‘&x‘fromdual; --查询替换变量值old1:select‘&x‘fromdualnew1:select‘abc‘fromdual‘AB---abcSQL>variablexvarchar2(10)--声明变量SQL>begin2:x:=‘hello‘;3..
分类:
数据库 时间:
2015-02-08 15:33:45
阅读次数:
184
PL/SQL变量的作用域,在当前块内部有效。declarev_numnumber(5,2):=1.23;begindeclarev_numchar(10);beginv_num:=12345;dbms_output.put_line(v_num);end;dbms_output.put_line(v_num);end;SQL>declare2v_numnumber(5,2):=1.23;3begin4declarev_numchar(10);5begin6v_num:=1..
分类:
数据库 时间:
2015-02-01 20:32:25
阅读次数:
237
高效能的PL/SQL假定代码符合功能需求,PL/SQL代码需要满足3个条件才能成为高效能:1.性能:运行的时间在可接受的范围内。2.影响:它不会破坏(或者以某种不可接受的方式削弱)你系统任何其他组件。3.可论证性:你可以证明,在所有合理的条件下,代码都不会破坏上述性能进而影响..
分类:
数据库 时间:
2015-01-30 01:33:29
阅读次数:
211
--使用子查询来查找不确定的值--子查询与SELECT语句SELECTE.EMP_ID,E.FIRST_NAME,E.LAST_NAME,EP.PAY_RATEFROMEMPLOYEE_TBLE,EMPLOYEE_PAY_TBLEPWHEREE.EMP_ID=EP.EMP_IDANDEP.PAY_RATE<(SELECTPAY_RATEFROMEMPLOYEE_PAY_TBLWHEREEMP_ID=‘443679012‘);下面这个语句会作为后..
分类:
数据库 时间:
2015-01-26 23:01:11
阅读次数:
489
--日期转换为字符串SELECTDATE_HIRE,TO_CHAR(DATE_HIRE,‘Monthddyyyy‘)HIREFROMEMPLOYEE_PAY_TBL;SELECTEMPLOYEE_TBL.EMP_ID,EMPLOYEE_TBL.LAST_NAME,EMPLOYEE_PAY_TBL.POSITIONFROMEMPLOYEE_TBL,EMPLOYEE_PAY_TBLWHEREEMPLOYEE_TBL.EMP_ID=EMPLOYEE_PAY_TBL.EMP_ID;SELECTE.EM..
分类:
数据库 时间:
2015-01-25 19:45:11
阅读次数:
153
create table father(f_id number(2) primary key,f_name varchar2(10));create table son(s_id number(2) primary key,s_name varchar2(10),s_height number(3....
分类:
数据库 时间:
2015-01-23 22:44:38
阅读次数:
198
--建表create table Regions (Region_id int not null primary key ,Region_name varchar(25) )go--国籍create table Countries(Country_id int not null primary ke...
分类:
数据库 时间:
2014-12-17 09:46:11
阅读次数:
262
题目地址:http://blog.csdn.net/qaz13177_58_/article/details/5575711sqlserver版本 29,30再议。。select SName,Ssex,class from STUDENTselect distinct depart from tea...
分类:
数据库 时间:
2014-11-24 15:01:39
阅读次数:
290
create database xinxikugouse xinxikugocreate table Student( Sno char(3) primary key, Sname char(8) not null, Ssex char(2) not null, Sbirth...
分类:
数据库 时间:
2014-11-09 17:51:55
阅读次数:
314