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';
上一篇: Log4j2的使用入门
下一篇: R语言实现具体的粒子群优化算法