2020年8月技術筆記

32W(2020082-20200808)

20200806

  • string的compare()方法用來比較字符串code

    • 最好用==0來判斷是否相等,以前在網上看了有>0判斷不相等,本身在Clion上試了一下,顯示結果不錯,在cppreference上看了一下,確實有返回-1的狀況。
  • where語句中or的狀況,必需要加上()字符串

    • select count(*) from table t where t.state='I' or t.state='C' AND t.age = 20;
    • select count(*) from table t where (t.state='I' or t.state='C') AND t.age = 20; 加上括號才行。
  • *都是回來再想一想,才以爲代碼寫得不對。
相關文章
相關標籤/搜索