我正在 Idiorm 和 Paris 中寻找以下 SQL 等效项:
SELECT * FROM table WHERE (regex=0 AND col=_match_) OR (regex=1 AND _match_ REGEXP col)
LIMIT 1
以下 Idiorm & Paris 语句仅匹配col=_match_
:
成语:
$row = ORM::for_table('table')
->where_equal('col', '_match_')
->find_one()
巴黎:
MyModel::where('col', '_match_')->find_one()