I have this query:
SELECT count(cp.CxID) as intSmokers
FROM CustPrimarySmoking cp
JOIN Customer c ON cp.CxID = c.CustomerID
WHERE
cp.CxID IN (SELECT CxID FROM CustPrimarySmoking WHERE CxID = cp.CxID LIMIT 1, 9999)
The idea being that the count will be based on the results of the nested query which retrieves all the records for that customer EXCEPT the first record.
HOWEVER, I get this error, which I think is pretty terminal:
1235 - This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'
Does anyone know of any other way of doing this?
Thanks