摘要:
mysql 1.创建索引idx_emp_no,查询emp_no为10005,使用强制索引 force index (idx_emp_no) 2.现在在last_update后面新增加一列名字为create_date, 类型为datetime, NOT NULL,默认值为'0000 00:00:00' 阅读全文
摘要:
mysql 1.创建表在里面加备注 create table xxx( id int primary key comment '编号', name varchar(15) not null comment '姓名' ) 2.date和timestamp的区别 Date 类型只包含日期部分,没有时间部 阅读全文
摘要:
mysql 获取所有非manager的员工emp_no 1.where写 where dept_no is null; 2.not in+子查询 where emp_no not in( select emp_no from dept_manager ); java 1.String.format 阅读全文
摘要:
今天的mysql不是很难 java 1.字符串转换为ascii码 int a = (int)c;即可 char c = sc.next().charAt(0); int a = (int)c; System.out.println(a); 2.格式化输出 在 Java 中,System.out.pr 阅读全文