1.创建table create table test01( id int not null primary key, name ) not null, gender ) not null, age int not null, address ) default ‘地址不详’ not null, regdata date ); 约束 非空约束 not null 主键约束 primary key 外键约束 唯一约束 unique 检查约束 check 联合主键 constraint pk_id_u…
=======================批量删除,只留前十条数据. delete from THIRD_PARTY_MERCHANT a where a.rowid in ( select rowid from THIRD_PARTY_MERCHANT minus select rowid from THIRD_PARTY_MERCHANT where rownum <10)…
--创建表空间 create tablespace waterboss datafile 'd:\waterboss.dbf' size 100m autoextend on next 10m --创建用户 create user wateruser identified default tablespace waterboss --给用户赋予dba权限 grant dba to wateruser create table t_owners ( id number primary key, n…
oracle触发器中增删改查本表 (1)只有before insert触发器中才可以查询或更新本表 create or replace trigger tri_test_ins before insert on test for each row declare v_cnt integer; begin select count(*) into v_cnt from test; dbms_output.put_line('test count:'||to_char(v_cnt)); u…
安装oracle后的测试以及解锁账户 安装后打开命令行,输入 sqlplus 回车后会提示输入用户名,输入 sys或者system 回车后输入密码,密码为安装oracle时设置的口令 登录后命令行会出现 SQL>> 表示登录成功,接着就可以写SQL命令了 这时登录的是sys用户或者system用户,如果需要使用scott用户需要解锁,解锁命令如下: 解锁scott用户 alter user scott identified by tiger account…