摘要:
定义 在 Go 语言中,术语”常量”用于表示固定的值。比如 5 、-89、 I love Go、67.89 等等。 看看下面的代码: var a int = 50 var b string = "I love Go" 在上面的代码中,常量 a 和 b 分别被赋值为常量 50 和 I love GO。 阅读全文
摘要:
首先弄明白两个概念-大概说一下,具体的网上都有: 覆盖索引-select b,c,d from t1 ;select b,c,d from t1 where b=1 and c =1 and d=1 ;select a,b,c,d from t1 where b=1 and c =1 and d=1 阅读全文