1
返す方法文字列を除外するquery string it self。mysql distinctを選択すると自己照会を除外します
column string = AAA/BBB/CCC
result string = BBB/CCC where column like AAA
column string = AAA/BBB/CCC
result string = CCC where column like AAA/BBB
"SELECT DISTINCT `column` FROM `table` WHERE `column` like '???'";
ありがとうございます。
ありがとうございました。 – njai