mysql多表关联查询的问题_百度知道
最佳答案: select a.id itemId,a.name, b.id imageId,IFNULL(b.filename ,'none.gif'), b.weight from item a ,item_image b where a.id =b.fk_item...
mysql联合查询的条件问题 - ITeye问答
2012年8月15日 - mysql联合查询的条件问题0 例如: SELECT DISTINCT `table1`.id FROM `table1` LEFT OUTER JOIN `table2` ON `table2`.`table1_id` = `table1`.`id` ...