摘要:
Description: Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified and no embedded datasource could be auto-configured. Reas 阅读全文
摘要:
1.加减年月日 with TEMP as ( select to_date('2019-5-3','yyyy-MM-dd hh24:mi:ss') as gmt_time from dual)select TO_CHAR(GMT_TIME,'yyyy-MM-dd') as 测试时间, TO_CHAR 阅读全文
摘要:
1.row_number() 排序策略,连续排序,它会为查询出来的每一行记录生成一个序号,依次排序且不会重复,例如1,2,3,4 SELECT names,dept,row_number() OVER(PARTITION BY dept ORDER BY age DESC) rank FROM wo 阅读全文