摘要:
comment on column 表名.字段名 is '注释内容'; comment on column OPERATOR_INFO.MAIN_OPER_ID is '归属操作员'; comment on table 表名 is '注释内容'; comment on table OPERATOR_ 阅读全文
摘要:
select * from operator_info o, group_info g where o.group_id = g.group_id(+); 理解: + 表示补充,即哪个表有加号,这个表就是匹配表,另一表为基表。 所以加号写在右表,则左表就全部显示,右表满足条件的才能显示,故是左连接。 阅读全文