2017年6月6日

Oracle 增加修改删除字段

摘要: 添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的语法:alter table tablename modify (column datatype [default 阅读全文

posted @ 2017-06-06 22:07 ceng006 阅读(171) 评论(0) 推荐(0)

注解 @SuppressWarnings({ "rawtypes", "unchecked" })

摘要: @SuppressWarnings 上述注解是jse提供的注解。作用是屏蔽一些无关紧要的警告。使开发者能看到一些他们真正关心的警告。从而提高开发者的效率 使用的话 是这样suppressWarnings 禁止显示警告 阅读全文

posted @ 2017-06-06 09:38 ceng006 阅读(2539) 评论(0) 推荐(0)

导航