我想要做的是比较两个表的字符串:
想象一下,我有一张名为学生和教授的桌子。两者都有一个名为 name 的属性。现在我想获取那些包含其中一位教授姓名的学生名。我当然试过
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.