【蛻變之路】第48天 知識點總結(2019年11月9日)

   Hello,你們好!我是程序員阿飛!今天主要給你們分享一下上週工做以及學習中遇到的知識點。程序員

    1、Mysql分組取最大時間的數據
sql

        先分組使用 max() 函數查詢出每組中最大的時間和類型,將時間字段和類型字段定義爲一個新表 tmp,再經過與 tmp 表的時間和類型聯合查詢,便可查詢出每組中的最新一條數據(時間最大的那條數據)。之因此要使用時間和類型兩個字段,是由於可能存在不一樣類型但時間相同的數據   app

        select * from t_company t RIGHT JOIN  (select type, MAX(create_date) as "createDate" from t_company GROUP BY type) tmp  on t.create_date = tmp.createDate and t.type=tmp.typeide

    2、replace 雙引號到單引號函數

        str.replace("\"", "\'"); 
學習

        str.replaceAll("\"", "\'");spa

    3、Eclipse上傳代碼到碼雲.net

      參考網址:https://blog.csdn.net/zjsdrs/article/details/78407571
blog

    【參考地址】ip

        https://blog.csdn.net/wsjzzcbq/article/details/86691472

      https://blog.csdn.net/konglongaa/article/details/51596440

相關文章
相關標籤/搜索