Below is the equilvalent XPath query.
/jcr:root/content/abc/def//element(*, cq:Page)[jcr:contains(jcr:content/@sling:resourceType, 'geometrixx/components/list')].
Below are some of the mappings between xpath and sql2 queries respectively.Taken from http://docs.jboss.org/jbossdna/0.7/manuals/reference/html/jcr-query-and-search.html.
//* SELECT * FROM [nt:base]
//element(*,my:type) SELECT * FROM [my:type]
//element(*,my:type)/@my:title SELECT [my:title] FROM [my:type]
//element(*,my:type)/(@my:title | @my:text) SELECT [my:title],[my:text] FROM [my:type]
//element(*,my:type)/(@my:title union @my:text) SELECT [my:title],[my:text] FROM [my:type]
Thanks,
Balaji