首页 > 数据库 > Oracle > 正文

oracle 基础操作

2024-08-29 13:55:00
字体:
来源:转载
供稿:网友

显示当前用户下所有的表:select table_name from tabs;

查看当前用户属于哪个表空间:select username,default_tablespace from dba_users where username="用户名大写"

添加表中某一列的unique属性:alter table 表名 add constraint 约束名称 unique(列名);

删除表中某一列中的unique属性:alter table PRess drop unique(PublishName);

修改表某一列带有检查约束以保证格式正确:alter table Press modify check(PublishEmail like '%@%');

为表添加外键:BookPublish varchar2(50) references Press(PublishName)

为表添加外键:alter table 表名 add constraint 外键名 foreign key (指定列) references 参考表(参考列) ;

删除表的外键:aALTER TABLE test_sub DROP CONSTRAINT main_id_cons;


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表