1、新建表空间
create tablespace tp_XYQ
datafile 'G:\OracleProjects\xyq.dbf'
size 100m
autoextend on next 20m;
2、新建开发者账户:
create user xyqs identified by xyqs
default tablespace tp_XYQ
quota unlimited on tp_XYQ;
3、给新建用户授权:
grant connect,resource to xyqs;
grant create session,create table,create trigger,create procedure to xyqs;
4、连接新用户
conn xyqs/xyqs;
5、新建所需的表:
create table wish
(wID int primary key,
wFrom varchar2(20) not null,
wTo varchar2(30) not null,
wish varchar2(200) not null,
wTime date default sysdate,
wStyleIndex int not null,
wImageIndex int not null);
6、建立序列 数据自增
create sequence seq_wish
maxvalue 999999
start with 1
increment by 1;
7、建立触发器 数据自增
create or replace trigger tri_wish
before insert
on wish
for each row
begin
select seq_wish.nextval into :new.wid
from dual;
end;
/
8、测试数据插入:
insert into wish(wFrom,wTo,wish,wStyleIndex,wImageIndex) values('zhangsan','lisi','Have a good time!',3,7);
commit;
周楷雯
- 粉丝: 97
- 资源: 1万+
最新资源
- 毕设和企业适用springboot智能制造平台类及数字货币管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线教育管理系统源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线药品管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线音乐平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及资产管理平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及电影票务系统源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及自动化控制系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及客户服务智能化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及客户管理系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及企业管理智能化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及数据可视化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及团队协作平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及网络安全防护平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及物流追踪系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及医疗信息管理平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及线上文件管理系统源码+论文+视频.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈