Oracle增删改查--之增
1、新建数据库用户并设置密码 create user 用户名 identified by 密码
2、为新建用户授权dba grant dba to 用户名;
3、登陆验证feiyu用户 conn feiyu;
4、创建表(首先切到当前用户下) create table 表名(id number(6)not null primary key,id_username char(4));
5、给chengji表添加数据 insert into 表名 values(‘2‘,‘wfy‘);
6、给cheng表下的id_username列创建名为cheng_index的标准索引
create index 索引名 on 表名(字段名); (字段名查看方式为第一截图)
7、重建索引 alter index 表名 rebuild;
原文地址:http://blog.51cto.com/13043516/2113836
时间: 2024-10-25 13:01:45