数据库基础
Posted 十字街
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库基础相关的知识,希望对你有一定的参考价值。
1.SQL命令的类型:
DDL(数据定义语言)包括:
create table
alter table
drop table
create index
alter index
drop index
create view
alter view
DML(数据操作语言)包括:
insert
update
delete
DQL(数据选择语言)包括:
select
DCL(数据控制语言)包括:
alter password (修改密码)
grant (授予)
revoke (撤回)
create synonym (同义词)
2.数据类型进行显示转换函数: cast 或 convert
3.修改表元素属性:
sql server: alter table ... alter column ...
oracle: alter table ... alter modify ...
4.
以上是关于数据库基础的主要内容,如果未能解决你的问题,请参考以下文章