摘要:
python中的循环语句 循环语句均可以尾随一个else语句块,该块再条件为false后执行一次 如果使用break跳出则不执行。 for it in [1,2,3,4]: print(it,end=",") else: print("执行else语句块") #1,2,3,4,执行else语句块 f 阅读全文
摘要:
联合查询使用关键子union,用于在多个表种查询信息,并且信息类型相同的查询! union 关键子用于联合查询 如: (select *from student where student.score>10 limit 1)union all(select * from student where 阅读全文