Lines Matching refs:Expression
23 use Illuminate\Database\Query\Expression; alias
110 'pl_place' => new Expression('SUBSTRING(pl_place, 1, 120)'),
118 new Expression('MIN(pl_id) AS min'),
119 new Expression('MAX(pl_id) AS max'),
122 ->having(new Expression('COUNT(*)'), '>', '1')
148 new Expression('CASE pl_parent_id WHEN 0 THEN NULL ELSE pl_parent_id END'),
150 … new Expression("CAST(REPLACE(REPLACE(pl_lati, 'S', '-'), 'N', '') AS FLOAT)"),
151 … new Expression("CAST(REPLACE(REPLACE(pl_long, 'W', '-'), 'E', '') AS FLOAT)"),
162 new Expression('CASE pl_parent_id WHEN 0 THEN NULL ELSE pl_parent_id END'),
164 new Expression("REPLACE(REPLACE(pl_lati, 'S', '-'), 'N', '')"),
165 new Expression("REPLACE(REPLACE(pl_long, 'W', '-'), 'E', '')"),