eq 等於 equal
neq 不等於
gt 大於 greater than
egt 大於等於
lt 小於 less than
elt 小於等於
like LIKE
between BETWEEN
notnull IS NUT NULL
null IS NULL
/*thinkphp在另一個問題中的回帖*/
egf 是表示數據庫的字段比較,而非字符串比較
例如:
$map['name'] = array('eq','label'); 和
$map['name'] = array('eqf','label');
分別代表 name = 'label' 和 name = label
同樣的道理,gt lt 等其他表達式也可以在后面添加f來表示同樣的功能~