所以我有 2 个包含以下数据的表
*where a star is a primary key.
*and a # is a unique key.
表格1
╔══════╦═══════╦════════╗
║ #nlm ║ data2 ║ *data3 ║
╚══════╩═══════╩════════╝
表 2
╔══════╦═════╗
║ *pid ║ nlm ║
╚══════╩═════╝
目标是在我知道 pid 时获取 data2。我已经尝试过了,但失败得很惨。
SELECT data2 FROM table1 LEFT JOIN table2 USING nlm WHERE pid = 3;