一.连接查询 1)进入自己创建的zz数据库 2)创建学生表: create table students ( id int unsigned not null auto_increment primary key, name varchar() default '', age tinyint unsigned , high ,), gender enum('男', '女', '中性', '保密') default '保密', cls_id , is_delete bit ); 往学生表写入数据…
点击打开所使用到的数据库>>> 1.使用内连接获取客户"王传华"所有的订单信息和客户信息. 使用内连接获取客户"王传华"所有的订单信息和客户信息: select * from customer c join orders o on c.customerID=o.customerID where cName=' 王传华 ' 2.使用内连接获取客户"王传华"所有的下单日期信息,要求显示客户姓名和下单日期. 使用等值连接获取客户&qu…
连接查询 1.左连接查询: mysql> select stu.*,sc.*,maths+sc.chinese+sc.english from student stu left join score sc on stu.id=sc.id; 注释:stu:为别名.student stu left join score:student:为主表,score为副表显示. left join:为左连接. 两表关联:其ID必须一一对应(stu.id=sc.id): 2.右连接查询: mysql> sele…