.if语句使用示例: declare @a int begin print @a end else begin print 'no' end .while语句使用示例: declare @i int begin insert into test (userid) values(@i) end 设置重复执行SQL语句或语句块的条件.只要指定的条件为真,就重复执行语句.可以使用BREAK 和CONTINUE关键字在循环内部控制WHILE循环: .临时表和try --增加临时表 select * in…
[python学习笔记]5.条件.循环和其他语句 print: 用来打印表达式,不管是字符串还是其他类型,都输出以字符串输出:可以通过逗号分隔输出多个表达式 import: 导入模块 import somemodule 导入模块 from somemodule import somefuction 导入函数 import math as foobar 导入模块,并使用别名 from math import sqrt as foobar 导入函数,并使用别名 序列解包:将序列赋值给多个变量…