就如同C里的if else,while,do,repeat.就看lua里怎么用: 1.首先看if else t = {1,2,3} local i = 1 if t[i] and t[i] % 2 == 0 then print("even") else print("odd") end lua木有C里的&&,而是and来表示:if 之后跟表达式,之后要更个then 最后语句结束都要写end 表示这个chunk结束了. 2.while while t…
Sql语句学习 一. select playerId, count(playerId) as num from OperateLog_$i where playerId > 0 and rootId = 12 and typeId = 12156 and actionTime >= 1381509000000 and actionTime <= 1381511220000 group by playerId having count(*) > 2; this-- > 可以计…
Lua中的常规语句包括:赋值.控制结构和过程调用.Lua还支持一些不太常见的语句,如:多重赋值(multiple assignment) 和 局部变量声明.4.1 赋值Lua允许“多重赋值”,也就是一下子将多个值賦给多个变量.每个值或每个变量之间以都好分隔.例如:a, b = 10, 2*x赋值后,变量a变为10,b变为2*x.在多重赋值中,Lua先对等号右边的所有元素求值,然后才执行赋值.这样便可以用一句多重赋值来交互两个变量了,如下所示:x, y = y, x --…