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.
自作の検索ページに問題があります。2つのテーブルがあります:
**name status** Kevin 111 <-table1 Lucas 222 **id data** 111 student <-table2 222 pupil
だからあなたは私にそのようなテーブルを与えるクエリが必要です:
Kevin student Lucas pupil
手伝ってくれてありがとう!
これを試して
SELECT t1.name, t2.data FROM table1 t1 INNER JOIN table2 t2 ON t1.status = t2.id ORDER BY t1.name