E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
deptno
oracle 日志-oracle 异常事务回滚
create or replace procedure testcomitandexp()as begin insert into dept(
deptno
,dname,loc
javalucky
·
2012-04-29 10:15
oracle
异常
SQL常用语句 (子查询)
SQL常用语句(子查询) 一、SQL子查询语句1、单行子查询selectename,
deptno
,salfromempwheredeptno=(selectdeptnofromdeptwhereloc
jackwxh
·
2012-04-26 10:49
sql
Oracle试用PreparedStatement出现java.sql.SQLException: 无效的列索引
sql语句如下:selectbu.
deptno
,count(bu.hiredate)StartMonthCountfromuserinfobu,deptdwherebu.
deptno
=d.deptnoandbu.hiredate
nwsuafer
·
2012-04-19 18:00
oracle
sql
Date
Oracle试用PreparedStatement出现java.sql.SQLException: 无效的列索引
sql语句如下:select bu.
deptno
,count(bu.hiredate) StartMonthCount from userinfo bu,dept d where bu.
deptno
=d.
deptno
nwsuafer
·
2012-04-19 18:00
java.sql.SQLException: 列名无效
if(rs.next()){dept.setDeptNo(rs.getInt("
deptno
"));dept.setDeptName(rs.getString
nwsuafer
·
2012-04-15 14:00
sql
数据库
Date
String
java.sql.SQLException: 列名无效
select
deptno
,dname,dtype,dphone,dfax,ddescription,dupper,dcreatedate from dept where
deptno
=1 SQL语句在
nwsuafer
·
2012-04-15 14:00
SQLException
oracle alter table 详解
//建测试表 create table dept(
deptno
number(3) primary
玻璃无处不在
·
2012-04-14 01:00
oracle
oracle--多行转为一行的连接手段
String集聚连接技术 需要将多行转换为一行,例子如下: 基础数据:
DEPTNO
wang4674890
·
2012-04-13 21:00
oracle
sql
Oracle中复合数据类型例子
declare typeemp_record_typeisrecord( namescott.emp.ename%type, salaryscott.emp.sal%type, dnoscott.emp.
deptno
huang798807481
·
2012-04-13 10:00
oracle
table
Integer
delete
insert
nested
Oracle中复合数据类型例子
is record( name scott.emp.ename%type, salary scott.emp.sal%type, dno scott.emp.
deptno
iwebcode
·
2012-04-13 10:00
oracle
Oracle集合
例如:select
deptno
from scott.emp Intersect select
deptno
from scott.dept;结果是两个表之间的共同值。
iwebcode
·
2012-04-13 10:00
oracle
利用Oracle分析函数实现多行数据合并为一行
demo场景,以oracle自带库中的表emp为例: select ename,
deptno
from emp order by
deptno
; ENAME  
wang4674890
·
2012-04-12 16:00
oracle
Oracle SQL的练习
--列出员工表中每个部门的员工数,和部门 no select t.
deptno
,count(1) from scott.emp t group by t.
deptno
; --列出员工表中每个部门的员工数
supportopensource
·
2012-04-11 00:00
Oracle SQL
Oracle 中的游标用法
循环将游标中的数据提取出来并放置2个变量中输出 SQL> declare 2 cursor dept_cur is select d.
deptno
,d.dname from
as619864232
·
2012-04-10 16:00
oracle
游标
Cursor
[zz] MySQL SQL语句练习
建库建表--create database companycreate database company;use company;--create tables--部门表create table dept(
deptno
leowzy
·
2012-04-10 14:00
mysql
oracle基础琐碎总结-----Where和Having的区别与联系
注:本文使用字段为oracle数据库中默认用户scott下面的emp表,sal代表员工工资,
deptno
代表部门编号。
wangxingrui168
·
2012-04-06 14:56
oracle
职场
休闲
oracle基础琐碎总结-----Where和Having的区别与联系
注:本文使用字段为oracle数据库中默认用户scott下面的emp表,sal代表员工工资,
deptno
代表部门编号。
·
2012-04-04 21:00
oracle基础
oracle 外联接
to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 Connected as scott SQL> select
deptno
as619864232
·
2012-03-31 13:00
外连接
oracle
(+)
外联接
CREATE TABLE 表名 AS SELECT 语句
Enterprise Edition Release 11.2.0.1.0 Connected as scott SQL> select * from dept;
DEPTNO
as619864232
·
2012-03-30 15:00
oracle
Create table
Oralce笔记(更新中...)
selectd.dname部门名称,count(e.empno)人数fromdeptdleftouterjoinempeon(d.
deptno
=e.
deptno
)groupbyd.dnameOracle
老虎计算机
·
2012-03-29 22:35
join
null
语言
function
数据库
query
Oracle
有关数据库的 基本操作
----学习数据库--左右连接select*fromemp,deptwhereemp.
deptno
(+)=dept.deptnoanddept.
deptno
=40--1999笛卡尔集 自然连接select
wuyinxian
·
2012-03-26 00:00
权限、角色小记
例如把某列的更新权限赋予某个用户:grant update(
deptno
)onemp toscott; 授予某个用户角色时,只有下次登录时才起作用;
xuelanggongwu
·
2012-03-20 20:00
ORACLE 函数
sql游标 SQL%FOUND 用于确定sql语句执行是否成功,根据sql有作用行时,其为true,否则为false declare v_
deptno
mep.
deptno
%type :=&
自动放假
·
2012-03-20 11:00
oracle
oracle第三天
子查询 seselect
deptno
avg(sal) from t1 group by
deptno
having avg(sal)=select min(avg(sal))from t1 group
wsql
·
2012-03-20 08:00
oracle
DML(Data Manipulation Language)语句 on Oracle
insert into tablename values(col1value,col2value···); --可以插入特定字段 insert into dept2 (
deptno
android_mylove
·
2012-03-15 22:00
language
DML(Data Manipulation Language)语句 on Oracle
inserupdatedelete)--insertinsertintotablenamevalues(col1value,col2value···); --可以插入特定字段 insertintodept2(
deptno
shijinupc
·
2012-03-15 22:00
JOIN
oracle
null
delete
insert
character
Oracle多表查询
二举例: 1.等值连接例:得到的是部门和员工下的
deptno
相同的 SQL>
hanxiaoshuang321123
·
2012-03-13 23:00
oracle的rollup
rollup 配合 goup by 命令使用,可以提供信息汇总功能(类似于"小计") 下面是一个简单例子: SQL> select job,
deptno
,sal from
晨曦之光
·
2012-03-09 16:00
浅析Oracle 10gR2中优化器对表关联的优化
偶都尽量在表设计上做些冗余处理;在10gR2中,发现优化器可以优化掉一些不必要的关联……9206:SQL>setautotonSQL>selectcount(*)2fromdeptd,empe3whered.
deptno
晨曦之光
·
2012-03-09 16:00
RANK() OVER(PARTITION BY
deptno
ORDER BY empno)
相比之下row_number是没有重复值的 http://www.itpub.net/thread-244881-1-1.html 基于[
deptno
]进行不具有重
彭博
·
2012-03-09 16:00
sql3
SCOTT>selectename,sal 2 fromempe, 3 (selectdeptno,avg(sal)avg_salfromempgroupbydeptno)s 4 wheree.
deptno
风光坏家伙
·
2012-03-03 20:33
数据库
职场
where
休闲
表达式语言在MVC中的运用
MVC_${}项目下进行的一、表达式的一般输出Dept.jsva package org.ml.eldemo.vo; public class Dept { private int
deptno
cselmu09
·
2012-02-29 20:39
Web
表达式
表达式语言
表达式语言在MVC中的运用
MVC的运用
表达式语言在MVC中的运用
以下的所有内容都是在MVC_${}项目下进行的一、表达式的一般输出Dept.jsvapackage org.ml.eldemo.vo; public class Dept { private int
deptno
cselmu09
·
2012-02-29 20:39
web
表达式
表达式语言
Java
Web
sql 语法1
sql基本语法 SCOTT>select loc,dname,
deptno
from dept; LOC DNAME
DEPTNO
风光坏家伙
·
2012-02-27 17:12
sql
数据库
职场
语法
休闲
orcale触发器
Oracle 触发器有语句级触发器和行级触发器 语句级触发器 当删除部门表中的部门号时,同时删除掉员工表中部门号为:old.
deptno
的记录 create or
wangyanlong0107
·
2012-02-27 14:00
orcale
savepoint
theSAVEPOINTstatementtoidentifyapointinatransactiontowhichyoucan laterrollback.例如: SQL>SELECT*FROMSCOTT.DEPT ;
DEPTNO
xyz846
·
2012-02-27 09:00
oracle
sql
活动
delete
Oracle数据库case的作用,查询很管用的
selecte.empno ,e.ename ,case whene.
deptno
=10then'壹拾' whene.
deptno
=20then'贰拾' whene.
deptno
=30then
goodleiwei
·
2012-02-21 14:00
oracle
数据库
标准SQL查询 总结练习
实现:SQL>selectdeptno,avg(sal)fromempgroupbydeptno;
DEPTNO
AVG(SAL)-------------------- 102916.66667
changyanmanman
·
2012-02-16 11:00
PL/SQL 11g R2 —— PL/SQL结构控制语句 !
1、ifdeclare--if语句 v_empnoemp.empno%type:=&no; v_deptnoemp.
deptno
%type; begin selectemp.deptnointov_deptnofromempwhereemp.empno
zq9017197
·
2012-02-14 15:00
在ORACLE中创建具有结钩相同的表
例如:存在一张部门表如下: SQL> select * from dept;
DEPTNO
DNAME LOC ------ -------------
momingyizhi
·
2012-02-07 20:16
oracle
职场
建表
休闲
结钩相同
在ORACLE中创建具有结钩相同的表
例如:存在一张部门表如下:SQL> select * from dept;
DEPTNO
DNAME LOC ------ -------------- -------------
momingyizhi
·
2012-02-07 20:16
oracle
职场
休闲
ORACLE
java连接MySQL数据库
show tables; 显示当前数据库所包含的表1.3 desc dept; 显示dept表的结构1.4 select * from dept order by
deptno
拓子轩
·
2012-01-22 09:00
java
mysql
jdbc
databases
ORACLE数据的导入导出操作
一、创建相关的表CREATETABLEdept( recno varchar2(2),
deptno
VARCHAR2(2), dname VARCHAR2(20), loc VARCHAR2
zyujie
·
2012-01-19 16:00
oracle
Oracle导入导出
Oracle笔记 十、PL/SQL存储过程
cursor c is select * from dept2 for update; begin for row_record in c loop if (row_record.
deptno
king_tt
·
2012-01-09 20:00
oracle
Oracle笔记 四、增删改、事务
1、插入 insert into dept values(50, 'soft', 'Guangzhou'); insert into dept(
deptno
, dname) values
king_tt
·
2012-01-09 20:00
oracle
Oracle数据库的Load详解
--常规load方式----load.ctl文件loaddatainfile'c:\1.txt'intotabledeptfieldsterminatedby','(
deptno
,dname,loc)-
Tiwen818
·
2011-12-29 20:00
oracle
c
Date
数据库
table
oracle学习笔记―伪列(ROWNUM,ROWID)ORACLE 分页
列: SELECTROWNUM,JOB,
DEPTNO
,FROMEMP; SELECTROWNUM,JOB,
DEPTNO
,FROMEMPWHERWDEPTNO=20;根据这一特性,在加上子查询,可以实现分页查询
wbzy54088
·
2011-12-13 23:10
oracle
职场
休闲
oracle over函数用法
1,初始化脚本 create table emp(
deptno
varchar2(10),ename varchar2(20),sal number(10,0)); insert into
小马迷途
·
2011-12-10 00:00
oracle
分页
row_number
over
如何给查询块命名?
SQL>with 2 empsas(select/*+qb_name(sq)*/
deptno
,count(*)ascnt 3 fromemp 4 groupby
songxixi
·
2011-12-09 16:00
oracle 内连接 左外连接 右外连接的用法,(+)符号用法
左外连接 select * from emp a left join dept d on a.
deptno
=d.deptnoselect * from
wandejun1012
·
2011-12-09 12:00
oracle
上一页
24
25
26
27
28
29
30
31
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他