第八章数据处理1.数据操纵语言DML(DataManipulationLanguage–数据操纵语言)可以在下列条件下执行:向表中插入数据修改现存数据删除现存数据事务是由完成若干项工作的DML语句组成的2.INSERT语句语法使用INSERT语句向表中插入数据。使用这种语法一次只能向表中插入一条数据。INS..
分类:
数据库 时间:
2014-12-20 18:28:37
阅读次数:
210
While designing your database, you have created the EMPLOYEES tab
le as an index-organized (IOT). You want to create a bitmap index on
the JOD_ID column to make queries faster. Which task must have...
分类:
移动开发 时间:
2014-12-19 23:34:14
阅读次数:
365
第六章子查询1.子查询语法:SELECT select_listFROM tableWHERE exproperator (SELECT select_list FROM table);子查询(内查询)在主查询之前一次执行完成。子查询的结果被主查询(外查询)使用。例如:谁的工资比Abel高?SELECTlast_nameFROMemployeesWHEREsalary>(SELECTs..
分类:
数据库 时间:
2014-12-19 15:55:15
阅读次数:
227
第五章分组函数1.什么是分组函数?分组函数作用于一组数据,并对一组数据返回一个值。类型:AVG COUNT MAX MIN STDDEV SUM2.AVG(平均值)和SUM(合计)函数:可以对数值型数据使用AVG和SUM函数。SELECTAVG(salary),MAX(salary),MIN(salary),SUM(salary)FROMemployeesWHEREjo..
分类:
数据库 时间:
2014-12-19 02:02:27
阅读次数:
218
第四章多表查询1.笛卡尔集笛卡尔集会在下面条件下产生:省略连接条件连接条件无效所有表中的所有行互相连接为了避免笛卡尔集,可以在WHERE加入有效的连接条件。2.Oracle连接使用连接在多个表中查询数据。selecttable1.column,table2.columnfromtable1,table2wheretable1.column=..
分类:
数据库 时间:
2014-12-18 15:30:24
阅读次数:
225
create table Employees(EmpId int identity(1,1),EmpName varchar(50),EmpGender char(2),EmpAge int,EmpEmail varchar(100),EmpAddress varchar(500))gocreate...
分类:
数据库 时间:
2014-12-13 13:20:56
阅读次数:
167
A screener (SCR) is an advance screening of a film or television series sent to critics, awards voters, video stores (for their manager and employees)...
分类:
其他好文 时间:
2014-12-12 11:31:38
阅读次数:
235
The employees of the R1 company often spend time together: they watch football, they go camping, they solve contests. So, it's no big deal that sometimes someone pays for someone else.
Today is the...
分类:
编程语言 时间:
2014-12-04 23:16:43
阅读次数:
244
1 /*传入下拉select标签*/ 2 function get_selected(mslt_employees) { 3 var emplo =mslt_employees.multiselect("getChecked").map(function () { 4 ...
分类:
其他好文 时间:
2014-12-04 19:42:43
阅读次数:
358
Jquery ajax 绑定multiselect多选下拉选项,同时异步执行获取返回值 1 function load(mslt_employees,belongto,mark) {//传入$(#ID) 2 var jsondata = JSON.string...
分类:
Web程序 时间:
2014-12-04 19:35:41
阅读次数:
341