为了账号安全,请及时绑定邮箱和手机立即绑定

Oracle数据库开发必备利器之SQL基础

难度入门
时长 4小时14分
学习人数
综合评分9.67
338人评价 查看评价
9.8 内容实用
9.7 简洁易懂
9.5 逻辑清晰
周五考oracle,来这里补补课!~~~~
感谢慕课网提供的免费的视频,里面的视频真的很全面
drop table table_name ; 删除表
truncate table table_name 截断语句,删除掉表中的全部数据,并没有删除表。truncate tabe table_name;truncate table table_name;
alter table table_name add/modify column_name datatypes;增加字段/修改字段数据类型
alter table table_name drop column column_name ;删除字段
alter table table_name rename column colume_name to new_column_name 修改字段名
rename table_name to new_table_name ;修改表名
create table userinfo
(id number(6,0),
username varchar2(20),
userpwd varchar2(20),
email varchar2(30),
regdate date,
)
视频好像压坏了
desc drop alter select including contents default temporary datafile tempfile
tablespace 表空间
drop tablespace tablespace_name including contents
alter tablespace tablespace_name add datafile 'xx.dbf' size xx;
alert tablespace tablespace_name drop datafile 'filename.dbf'
alter tablespace tablespace_name read only | read write (online)
alter tablespace tablespace_name online | offline;
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m ;
create temporary tablespace temptest1_tablespace tempfile 'temp1file.dbf' size xx ;
dese dba_data_files ;
select dba_data_files where tablespace_name='TEST1_TABLESPACE';
dese dba_tablespaces;
select tablespace_name from dba_tablespaces;
课程须知
只要知道数据库是什么就可以来学习本课程呦!
老师告诉你能学到什么?
掌握Oracle的SQL语句基础,为后续的课程学习打好基础。

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消