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.
对于我尝试为 phpBB 编写的 MOD,我需要知道如何根据表中的另一行在 MySQL 数据库表的一行中找到一个值。例如,假设这是我的桌子。
Row_Id | Name | Birthday ———————————————————————— 1 | Bob | 1/19/1965 2 | Ann | 9/15/1968
如何根据行 ID 找到此人的姓名?我无法弄清楚,谷歌搜索没有任何结果。我需要使用 PHP 回显得到的数据,但我已经了解如何做到这一点。
干得好
SELECT * FROM tbl WHERE Row_Id = $id