摘要:
Module m = current; //m = edit(“xxx”) Object o for o in m do { string sht = o.”shtName” Buffer bf=create bf = sht string tmp=“Til” int index=contains( 阅读全文
摘要:
左外连接: (以左表为基准)两张表做连接的时候,在连接条件不匹配的时候留下左表中的数据,而右表中的数据以NULL填充例:使用左连接把学生的数据全取出来,该学生没有学院信息的用NULL填充 mysql> select * from student left join department -> on 阅读全文
摘要:
出现在其他SQL语句内的SELECT字句。(select 中 嵌套 select ) #求出学生的平均年龄select avg(age) from stu_details; #查找出大于平均年龄的数据mysql> select * from stu_details where age >18.25; 阅读全文
摘要:
1.查询所有记录select * from department;select * from student;select * from student_detail; 2.查询选中列记录 3.查询指定条件下的记录select s_name from student where s_id>2; 4. 阅读全文