乐趣区

关于c++:2020年8月技术笔记

32W(2020082-20200808)

20200806

  • string 的 compare() 办法用来比拟字符串

    • 最好用 ==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; 加上括号 才行。
  • * 都是回来再想想,才感觉代码写得不对。
退出移动版