I have a table TEST with the following columns :
code_ver (VARCHAR)
suite (VARCHAR)
date (DATE)
Now I want to select 10 rows with a distinct value of code_ver & code_ver NOT LIKE '%DevBld%' sorted by date desc.
So I wrote the following query:
select *
from test
where code_ver IN (select DISTINCT code_ver
from test
where code_ver NOT LIKE '%DevBld%'
ORDER by date DESC LIMIT 10);
This query should ideally work, but my version of MySQL says :
This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'
Can someone suggest me an alternative to this query?