-
添加字段:
alter table 表名
add 字段名 数据类型;
更改字段数据类型:
alter table 表名
modify 字段名 数据类型;
删除字段:
alter table 表名
drop column 字段名;
修改字段名:
alter table 表名
rename column 需要修改的字段名 to 新的字段名;
修改表名:
1.rename 需要修改的表名 to 新的表名;
查看全部 -
创建一个表及其字段
create table 表名
(
列名 数据类型 ,
列名与列名之间用逗号隔开
)
desc:查看表的字段信息
查看全部 -
number(p,s) p:有效数字 s:小数点后的位数
date 范围:公元前4712年1月1日到公元9999年12月31日
查看全部 -
select * from users
where salary order by desc;
对工资进行降序排列
查看全部 -
select * from users
where username not in ('aa','bbb
');查找出用户名不是aaa,bbb的用户
查看全部 -
select * from users
where username in ('aaa','bbb');
找出用户名是aaa,bbb的用户。
查看全部 -
select * from users where salary between 800 and 2000;
查询出工资在800到2000之间员工;
查看全部 -
select * from users
where username like'%a%';
名字中含有字母a的人
查看全部 -
select * from users
where usernname like '_a_';注意是下划线
查看全部 -
模糊查询
select * from users
where username like 'a%';查找以字母a开头的用户名
查看全部 -
select * from users
where not (username='aaa');
查看全部 -
select * from users
where username ='aaa'or(salary>8000 and salary<=2000);小括号内的先执行
查看全部 -
select * from users
where username='aaa' or salary>2000;
查看全部 -
drop tablespace tablespace_name 执行后表空间删除了,文件没有删除,那这些文件在这之后属于哪个表空间?以后要使用这些文件该怎么操作?
用drop,是完全删除表的结构,,删除后表是不能找回来的,所以要谨慎使用,一般都用truncate/delete删除.
查看全部 -
创建表空间
永久
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
临时
create temporary tablespace test2_tablespace tempfile 'test2file.dbf' size 10m;
表空间即文件/临时文件
创建表空间语法:
CREATE [TEMPORARY] TABLESPACE
tablespace_name
TEMPFILE|DATAFILE 'xx.dbf' SIZE xx
例:
CREATE TABLESPACE
查看表空间中,文件的具体路径:
desc dba_data_files;
select file_name from dba_data_files
where tablespace_name='TEST1_TABLESPACE';
临时文件:
select file_name from dba_temp_files
查看全部
举报