MySQL中经常使用关联查询,有机会总结下: 1 left join(左联查询): 返回包括左表中的所有记录和右表中联接字段相等的记录 例:select * from a left join b on a.id=b.id 2 right join(右联查询): right join(右联接)返回包括右表中的所有记录和左表中联接字段相等的记录 例:select * from a right join b on a.id=b.id 看到这里可能比较还是有点不明白,请看以下示例 假如有两张表,A B…
一.内联方式 1.传统关联查询 "select * from students,transcript where students.sid=transcript.sid and transcript.total>600 and transcript.date=2015-6"; 上面是查询出在2015-6月,月考中总成绩超过600的学生信息.where的条件有三个,要看出是哪些是关联条件,哪些是查询过滤还是挺简单,若是多个表多个查询条件那么就不是那么容易了 2.JOIN...ON…
//查询账单关联订单 select o.id as id, o.order_no as orderNo, o.case_no as caseNo, o.send_time as sendTime, o.final_time as finalTime, (select ca.car_no from fm_order_case ca where ca.case_no = o.case_no) as carNo, (select co.service_money from fm_order_cost…
mysql数据库的统计------生成统计信息 1.distinct:在一组之中将各个唯一的值找出来,如找出所有的品牌种类 mysql>select distinct brand_kind from brand;+---------------+| brand_kind |+---------------+| A || B || C |+---------------+ 2.计数统计,使用count(*),…
左外连接: (以左表为基准)两张表做连接的时候,在连接条件不匹配的时候留下左表中的数据,而右表中的数据以NULL填充例:使用左连接把学生的数据全取出来,该学生没有学院信息的用NULL填充 mysql> select * from student left join department -> on dept_id= d_id; 右外连接: (以右表为基准)对两张表做连接的时候,在连接条件不匹配的时候留下右表中的数据,而左表中的数据以NULL填充例:使用右外连接,把没有…