-
修改表:
添加字段(列,域):
ALTER TABLE table_name
ADD column_name datatype;
更改字段数据类型:
ALTER TABLE table_name
MODIFY column_name datatype;
删除字段:
ALTER TABLE table_name
DROP COLUMN column_name;
修改字段名:
ALTER TABLE table_name
RENAME COLUMN column_name TO new_column_name;
修改表名:
RENAME table_name TO new_table_name;
查看全部 -
创建表:
同一用户下表名要唯一
CREATE TABLE table_name
(
column_name datatype,……
)
查看全部 -
数据类型:
字符型数据:
固定长度类型:必须占满n位
CHAR(n) n最大为2000
NCHAR(n)按照unicode格式存放数据,n最大为1000
可变长度类型:相对更节省空间
varchar2(n),n max=4000
nvarchar2(n),n max=2000
数值型:
NUMBER(p,s)p表有效数字,s表范围(小
数点位数。s为正,表小数点到最低有效数字的位数,s为负,表示小数点到最大有效数字的位数)
NUMBER(5,2) 表有效数字5位,保留两位小数:如123.45
NUMBER(5,-2) 表有效数字5位,保留三位小数:如12.345
FLOAT(n)存储二进制数据,1-126位二进制数
转换成十进制数:FLOAT数乘以0.30103
日期型:
DATE 范围:公元前4712年1.1至公元9999年12.31 精确到秒
TIMESTAMP 精确到小数秒
查看全部 -
表:
约定:
1、每一列数据必须具有相同的数据类型
2、列名唯一
3、每行数据唯一
查看全部 -
删除表空间:
DROP TAVLESPACE tablespace_name [including contents];
including contents 表示连同表空间里的数据文件一并删除。
查看全部 -
select username ,decode (username ,'aaa','计算机部门', 'bbb','市场部门','其他部门')as 部门 from users;
查看全部 -
select * from users order by id desc;id降序排列
select * from users order by id desc,salary asc;id降序salary升序
select * from users order by username desc,salary asc;username降序,salary升序
查看全部 -
select * from users where salary between 800 and 2000;范围查询
select * from users where salary not between 800 and 2000;
select * from users where username in ('aaa','bbb');
select * from users where username not in ('aaa','bbb');
查看全部 -
select username, salary from users where id=3;带条件查询单一数据
select * from users where username= 'aaa' or (salary >800 and salary <=2000);多条件查询
select * from users where not (username= 'aaa');非逻辑运算符
查看全部 -
select id, username ,salary+200 from users;查询语句中使用算数运算符
select username from users where salary>查询语句时使用比较运算符
select username from users where salary > 800 and salary <>1800.5;查询语句时使用逻辑运算符
查看全部 -
select distinct username from users;查询的时候去除重复的数据
select distinct username as 用户名 from users;
查看全部 -
select id as 编号,username as 用户名 , salary 工资 from users ;查询时给字段设置别名
查看全部 -
select * from 查询表中全部字段
select username, salary from users;查询表中部分字段
查看全部 -
删除表空间及数据文件:
drop tablespace xxx including contents and datafiles;查看全部 -
SID:系统标识符
全局数据库
锁定查看全部
举报