Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的办公室项目有问题
我的桌子
tbl_phonebook 号码名称 0814432 ahmad
tbl_inbox SenderNumb text 0814432 coba coba 0942042 sekalian
如何显示收件箱表格中的数据 如果收件箱中的号码与电话簿表格中的号码相同,则在收件箱中显示姓名和号码 如果没有/与电话簿表格中的号码不同,则显示原始号码发件人
tq 之前
我不完全确定我理解你的问题。我想你想用它LEFT JOIN来查看电话簿表中是否存在记录。
LEFT JOIN
也许用于IFNULL显示姓名或发件人号码:
IFNULL
SELECT i.sendernumb, IFNULL(p.name,i.sendernumb) name, i.text text FROM tbl_inbox i LEFT JOIN tbl_phonebook p ON i.SenderNumb = p.number