sql
小月木子长
搞清楚自己的人生剧本,不是父母的续集,不是孩子的前传,更不是朋友的番外篇
展开
-
oracle 实现主键序列自增长数据入库
–创建序列create sequence test_seq start with 1 increment by 1;–根据序列自增插入数据到test表中insert into test(pk_value) select test_sep.nextval from dual . . . ....原创 2018-09-04 22:14:57 · 295 阅读 · 0 评论 -
group by 取每组最新的一条
单表操作select mac(a),b,max(time) from test desc group by b;多表关联group by 取每组最新一条select max(a.b_id),max(a.title), max(t.name), max(t.price) from a inner join (select * from b order by id, price...原创 2018-09-03 09:01:06 · 19239 阅读 · 4 评论 -
oracle 时间戳转换日期
Oracle时间戳(毫秒)转为DateSELECT TO_CHAR(1112070645000 / (1000 * 60 * 60 * 24) + TO_DATE('1970-01-01 08:00:00', 'YYYY-MM-DD HH:MI:SS'), 'YYYY-MM-DD HH:MI:SS') AS CDATE FROM PDA_ORDER t以1970年时间作...原创 2018-10-09 17:44:47 · 31614 阅读 · 0 评论