文章分类 -  Oracle

Oracle相关技术
摘要:给表或字段添加注释语法: comment on table 表名 is '注释' comment on column 表名.字段名 is '注释' 例句: comment on table student is '学生表' comment on column student.name is '姓名' 阅读全文
posted @ 2022-07-11 11:25 知不道! 阅读(953) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2022-04-11 17:15 知不道! 阅读(3088) 评论(0) 推荐(0)