摘要:
sql语句执行顺序: 1、最先执行from tab; 2、where语句是对条件加以限定; 3、分组语句【group by…… having】; 4、聚合函数;max(),sum()等 5、select语句; 6、order by排序语句; 7、limit。 阅读全文
摘要:
def func(s: str): temp = '' count = 0 for i in range(len(s)): for j in range(i + 1, len(s)): if s[i] != s[j]: break j += 1 if count < j - i: count = j 阅读全文