SQL
Leo.Wu
life is game, game is life
展开
-
Mysql left join查询失败
错误的写法: select f.cost, f.id, p.buy_cost from funcs f where f.id = 57 LEFT JOIN paid_vin p on p.func_id = f.id 总是报以下错误: > 1064 - You have an error in your SQL syntax; check the manual that corres...原创 2019-09-08 21:09:55 · 801 阅读 · 0 评论 -
mysql join时 where 和 on同时使用查询过程
left join :左连接,返回左表中所有的记录以及右表中连接字段相等的记录。 right join :右连接,返回右表中所有的记录以及左表中连接字段相等的记录。 inner join: 内连接,又叫等值连接,只返回两个表中连接字段相等的行。 full join:外连接,返回两个表中的行:left join + right join。 cross join:结果是笛卡尔积,就是第一个表的...转载 2019-09-09 09:23:17 · 3739 阅读 · 2 评论