欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

oracle基本语句编写和函数使用

程序员文章站 2024-02-27 23:08:27
...

一、插入insert
insert into table(表名) (属性名,逗号隔开) values (属性值,逗号隔开);
例:

insert into code (REMARK, FLAG) values ('UploadInd',  '1');

二、给表增加一列alter
Alter Table 表名 Add 属性名 字段类型;
例:

Alter Table user Add userId Varchar2(255);

三、修改表的数据update
update table(表名) set userid=‘123456’ where usercode=‘123456’;
例:

update gguser set userid='123456' where usercode='123456';
相关标签: oracle 数据库