向表中插入一条数据
create table emp1
as
select employee_id , last_name , hire_date , salary from employees
where 1 = 2
需要注意的是,插入的数据,必须和表中数据种类,一一对应
insert into emp1
values(1001,'abc',to_date('1998-12-11',...
分类:
数据库 时间:
2015-02-03 19:30:58
阅读次数:
233
SQL语言分为三种:
DML: Data Manipulation Language 数据操纵语言
DDL: Data Definition Language 数据定义语言
DCL: Data Control Language 数据控制语言
select * (表示查询表中所有的列 ) from employees;
select employee_id , last_name...
分类:
数据库 时间:
2015-02-03 19:30:34
阅读次数:
217
The Employee table holds all employees including their managers. Every employee has an Id,
and there is also a column for the manager Id.
+----+-------+--------+-----------+
| Id | Name | Salary |...
分类:
数据库 时间:
2015-02-01 21:55:11
阅读次数:
418
原题如下:
Write a SQL query to get the second highest salary from the Employee table.
+----+--------+
| Id | Salary |
+----+--------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
+----+--------+
...
分类:
其他好文 时间:
2015-01-31 21:58:12
阅读次数:
189
得到的原来数据是一个多维的数据,但不是数组,发现无法处理直接用php 的函数就能处理成json格式$notice=$this->Employee_notice->get(array('id'=>$postdata['id'])); $flag=$notice[0...
分类:
编程语言 时间:
2015-01-28 19:33:44
阅读次数:
181
--使用子查询来查找不确定的值--子查询与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
一、引言程序测试需要生成大量的测试数据,且测试数据有主键,主键自增,于是决定用存储过程来实现,经过半天的查资料终于完成了,记录之,学习之二、存储过程格式:CREATE PROCEDURE remove_emp (employee_id NUMBER) AS tot_emps NUMBER; ...
分类:
数据库 时间:
2015-01-26 16:27:38
阅读次数:
389
--日期转换为字符串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
一.select的简单用法1.简单的数据检索SELECT*FROMT_Employee;2.检索出需要的列SELECTFNumber,FName,FAgeFROMT_Employee3.列别名SELECTFNumberASNumber1,FNameASName,FAgeASAge,FSalaryAS...
分类:
数据库 时间:
2015-01-24 10:11:12
阅读次数:
218
select if(count(salary) = 0, NULL, salary) as `salary` from (select salary from Employee group by salary order by salary desc limit 1,1) tmpWrite a S....
分类:
数据库 时间:
2015-01-23 06:05:49
阅读次数:
136