Any way to get this working ?
Code:
SELECT *,
CONCAT(`field1`, `field2`,`field3`,`field4`,`field5`) AS Uniq
FROM `table1` WHERE Uniq = 'somevalue'
Neither does this work too.
Code:
SELECT *,
CONCAT(`field1`, `field2`,`field3`,`field4`,`field5`) AS tbl1.Uniq
FROM `table1` tbl1 WHERE tbl1.Uniq = 'somevalue'