摘要: 建表语句: create table defects( id number(4), code varchar2(6), type varchar2(10) check(type='oper' or type='sql' or type='api'), status number(1) check(s 阅读全文
posted @ 2021-10-19 20:41 逆火狂飙 阅读(372) 评论(0) 推荐(0)
摘要: defects表结构: create table defects( id number(4), code varchar2(6), type varchar2(10) check(type='oper' or type='sql' or type='api'), status number(1) c 阅读全文
posted @ 2021-10-19 20:32 逆火狂飙 阅读(98) 评论(0) 推荐(0)