-
连接数据库的指令是:查看全部
-
通过SQL Plus打开数据库查看全部
-
主键: primary key;自动加入非空约束。。。 表记约束: constraint pk_id_username primary key(id,username); select constraint_name from user_constraints where table_name='表名';查看全部
-
非空: not null; 创建表: create table 表名{列名 数据类型 not null } 添加: alter table 表名 modify 列名 数据类型 not null; 修改时去除 : alter table 表名 modify 列名 数据类型 null;查看全部
-
约束:非空 唯一 外键 检查 主键*查看全部
-
修改表 结构 不是数据 添加字段: alter table 表名 add 列名 datetype; 修改字段:alter table 表名 modify 列名 datetype; 删除字段:alter table 表名 drop column datetype; 修改字段名: alter table 表名 rename column ??? to new??? desc 查看。。。查看全部
-
创建表: create table 表名 ( 列名 数据类型 ); 通常 create table userinfo ( id number(6,0), username vachar2(20), userpwd vachar2(20), email varchar2(20), regdate date);查看全部
-
nvarchar2和varchar2都可以表示可变长度的字符,其中nvarchar2用于存储Unicode格式的数据,更适合存储中文数据。查看全部
-
修改表空间 设置脱机联机状态:alter tablespace tablespace_name online|offline; 设置只读 :alter tablespace tablespace_name read only|read write;查看全部
-
创建表空间 create tablespace test1_tablespace datefile 'testfile.dbf' size 10m; 临时表空间 create temporary tablespace test2_tablespace tempfile 'testfile.dbf' size 10m;查看全部
-
查看用户的表空间 desv dba_tablespace select tablespace_name from dba_tablespaces; alter user system查看全部
-
表空间: 永久性 临时性 UNDO表空间查看全部
-
启用用户的语句 alter user scott account unlock; 登录 connect scott/tiger;查看全部
-
show user 命令 查看当前的用户 dba_users 数据字典。。 desc dba_users select username from dba_users; 查看所有用户的名查看全部
-
登录SQL 系统用户:sys > system system 企业管理器 scott查看全部
举报
0/150
提交
取消