摘要:
官方解释: Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.Never write another getter or e 阅读全文
摘要:
在命令行 敲 desc 表名; 阅读全文
摘要:
1.日期格式问题处理 plsql显示的日期格式是可以调整的,从excel插入的日期数据需要与plslq设置的日期格式一致插入,否则会报invalid date or time错误 阅读全文
摘要:
oracle添加注释的语法为: comment on column 字段名 is '注释名' 举例: 创建表: CREATE TABLE t1{ id varchar2(32) primary key, name varchar2(8) not null, age number } 添加表注释: c 阅读全文
摘要:
代码 刚刚创建的oracle实例中会内建两个用户:system和sys。 (1)新建用户 我们先使用system用户登录oracle实例来新建t_user用户。 新建用户格式:create user 用户名 identified by 密码 ; 如: create user t_user ident 阅读全文