本文介绍了FreeText与innerjoins?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
HI,
与innerjoins一起使用时,任何人都可以解决此freetex错误吗?
Can any one solve this freetex error while using with innerjoins
select count(candid) from HR_Candidate where freetext(Category,a.Category) and somecondition
这里的"a"是另一个表对象,类别属于该表.
here ''a'' is another table object, and category belongs that table
推荐答案
select
count(candid)
from
HR_Candidate a
where
freetext(Category,a.Category)
and
somecondition
这篇关于FreeText与innerjoins?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!