Mysql学习进度(2013.03.11)―sql语句学习一

left join的学习,“ left join 表名 on 条件 ”

select 字段名 from 表名(自命名) left join 表名(自命名) on 条件

例子:

select a.Menuid,a.Name,a.Price,c.RestaurantName,b.FT_name from t_menu a LEFT JOIN t_foodtype b ON a.FT_typeid = b.FT_typeid LEFT JOIN t_restaurant c on a.Restid = c.Restid;"

你可能感兴趣的:(mysql,MySQL基础,Mysql学习)