0

自作の検索ページに問題があります。2つのテーブルがあります:

**name status**
Kevin 111       <-table1
Lucas 222

**id  data**
111 student     <-table2
222 pupil

だからあなたは私にそのようなテーブルを与えるクエリが必要です:

Kevin student
Lucas pupil

手伝ってくれてありがとう!

4

1 に答える 1

2

これを試して

SELECT t1.name, t2.data 
FROM table1 t1 INNER JOIN table2 t2
    ON t1.status = t2.id
ORDER BY t1.name
于 2012-04-11T13:18:52.713 に答える