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.
簡単な質問ですが、おそらく非常に簡単です。データベースにテーブルがあるとしましょう。
PID | Column1 1 | A 2 | B 3 | C 4 | A 5 | A 6 | B
たとえば、Column1 の「A」の出現に関連付けられたすべての PID を返すにはどうすればよいでしょうか。
$aInColumn1 = {1,4,5};
……とか、そんなこと。
助けてくれてありがとう!
select PID from tableName where Column1 = 'A'