oracle 数据库:表结构的增删查改,表数据的增删查改

表结构的增删查改:

======================================
表结构的改:
–增加字段语法:alter table tablename add (column datatype [default value][null/not null],….);

说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);

例:alter table sf_users add (HeadPIC blob);

例:alter table sf_users add (userName varchar2(30) default ‘空’ not null);

–修改字段的语法:alter table tablename modify (column datatype [default value][null/not null],….);

说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);

例:alter table sf_InvoiceApply modify (BILLCODE number(4));

–删除字段的语法:alter table tablename drop (column);

说明:alter table 表名 drop column 字段名;

例:alter table sf_users drop column HeadPIC;

–字段的重命名:

说明:alter table 表名 rename column 列名 to 新列名 (其中:column是关键字)

例:alter table sf_InvoiceApply rename column PIC to NEWPIC;

–表的重命名:

说明:alter table 表名 rename to 新表名

例:alter table sf_InvoiceApply rename to sf_New_InvoiceApply;

==============================================================

表数据的增删查改:
–单表查询
select <查询字段>
from <表名>
where <条件>;

–数据更新插入
insert into <表名> values(表中所有字段信息);
insert into <表名>(列名1,列名2…) values (列名内容);

–更新修改数据
update <表名>
set <列名>=<表达式>
where <条件>;

–删除数据
delete from <表名>
where <条件>;

猜你喜欢

转载自blog.csdn.net/yql791237384/article/details/89329171