文章分类 - Oracle
Oracle相关技术
摘要:给表或字段添加注释语法: comment on table 表名 is '注释' comment on column 表名.字段名 is '注释' 例句: comment on table student is '学生表' comment on column student.name is '姓名'
阅读全文
摘要:1.单行插入和mysql没有区别 INSERT INTO my_table(field_1,field_2) VALUES (value_1,value_2); 2.批量插入语法: INSERT ALL INTO my_table(field_1,field_2) VALUES (value_1,v
阅读全文