摘要: 前提: 在Oracle中已经定义 存储过程 和 存储函数 和 包 导入了Oracle的JDBC jar 包 1 package demo; 2 3 import java.sql.Connection; 4 import java.sql.DriverManager; 5 import java.s 阅读全文
posted @ 2017-08-02 21:17 阿肯新 阅读(350) 评论(0) 推荐(0) 编辑
摘要: PLSQL: 符号: 赋值: := 基本示例: set serveroutput on //设置输出打开. declare --说明部分 begin --程序 dbms_output.put_line('Hello World'); exception end; / 引用型变量: --查询7839的 阅读全文
posted @ 2017-08-02 21:11 阿肯新 阅读(179) 评论(0) 推荐(0) 编辑
摘要: table:(表) 创建表 create table test3 (tid number,tname varchar2(20),hiredate date default sysdate); create table emp20 as select * from emp where deptno=2 阅读全文
posted @ 2017-08-02 21:03 阿肯新 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 地址符 & :在所有的DML语句中都可以使用,其是预编译一条语句,之后给地址符处传入参数,可以一直执行该语句. insert into emp(empno,ename,sal,deptno) values(&empno,&ename,&sal,&deptno); 输入 empno 的值: 1002 阅读全文
posted @ 2017-08-02 20:49 阿肯新 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 基本查询: 链接语句: sqlplus scott/tiger@192.168.56.101:1521/orcl SQL> --清屏 SQL> host cls (host clear) SQL> --当前用户 SQL> show user SQL> --当前用户下的表 SQL> select * 阅读全文
posted @ 2017-08-02 20:40 阿肯新 阅读(276) 评论(0) 推荐(0) 编辑
摘要: SQL优化(数据库的优化) 1. 尽量使用列名(不用*) 2. where解析顺序: 右--》 左 3. 自连接不适合操作大表 4. 尽量使用多表查询不使用子查询语句 5. 尽量不要使用集合运算 SQL中的null值: 1. 包含null的表达式都为null 2. null永远!=null 3. 如 阅读全文
posted @ 2017-08-02 19:55 阿肯新 阅读(163) 评论(0) 推荐(0) 编辑