知識點總結

2021-09-29 12:15:31 字數 526 閱讀 2463

一、mysql分組取最大時間的資料

先分組使用 max() 函式查詢出每組中最大的時間和型別,將時間欄位和型別字段定義為乙個新錶 tmp,再通過與 tmp 表的時間和型別聯合查詢,即可查詢出每組中的最新一條資料(時間最大的那條資料)。之所以要使用時間和型別兩個字段,是因為可能存在不同型別但時間相同的資料

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.type

二、replace 雙引號到單引號

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

str.replaceall("\"", "\'");

三、eclipse上傳**到碼雲

參考**:

【參考位址】

知識點總結

1,迴圈中的中斷 continue 跳出此次迴圈,繼續for迴圈 break 跳出當前for迴圈 return 跳出當前方法 2,字串的操作 componentseparatedbystring stringbyreplacingoccurencesofstring withstring iskin...

知識點總結

oncreate onstrat onresume onpause onstop onrestart ondestroy standard 啟動activity都會產生乙個新的activity 預設模式 singletop 啟動activity允許多個,但不允許重疊 singletask 只允許有乙...

知識點總結

function go go 呼叫 go為變數名 setinterval go,1000 1000ms clearinterval 關閉定時器 function abc a,b 2,3 5undefined 未定義 null 空 nan 非數值 string 字串 var a 123 數字型別 va...