mysql聯表查詢

mysql聯表查詢

需求: select的時候當前表table_1只有uid, 想拿到name, name在table_2

SELECT t1.uid, t2.`name`  FROM `table_1`  a, table_2 b
where a.uid = b.uid and a.`uid` != 0;
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章