1.数据库连接查询。 连接查询用于多表查询 内连接:用inner join 关键字(以学生表为例:select stu.stu_name,sc.stu_score from student stu inner join score sc on stu.stu_idsc.stu_id) 左外连接:left join on 特征&…
1.For-in循环中... for index in 1...5 { print("\(index) times 5 is \(index * 5)") } for _ in 1...5 { 可以用下划线忽略当前值 } 2.字典通过元祖返回 3.do while循环变成repeat repeat { statements } while condition 4.switch不需要break let someCharacter: …
Directory Description bin Contains startup, shutdown and other system-specific scripts. Basically all the entry point JARs and start scripts included with the JBoss distribution are located in the bin directory. 包含了服务器启动,关闭和系统相关…