摘要:
一、用如下语句找出sql到底是在哪里慢了 示例: SET STATISTICS io ON SET STATISTICS time ON go 你要测试的sql语句 select top 100 * from TBL_Cot_RecStaticList go SET STATISTICS profi 阅读全文
摘要:
二、Python3 运算符 1、Python逻辑运算符 1 #!/usr/bin/python3 2 3 a = 10 4 b = 20 5 6 if ( a and b ): 7 print ("1 - 变量 a 和 b 都为 true") 8 else: 9 print ("1 - 变量 a 和 阅读全文