私がやりたいことは、2 つのテーブルの文字列を比較することです。
学生と教授という名前のテーブルがあるとします。どちらも name という属性を持っています。ここで、教授の 1 人の名前を含む Studentnames を取得したいと考えています。もちろんやってみました
select s.name
from students s, professors p
where s.name like p.pame
しかし、それは言う:
SQL ERROR: An operand of LIKE is not a string, or the first operand is not a column.