I have a magento collection for which if i echo the getSelect() function, i get a query something like this:
SELECT
`table1`.*,
`table`.*,
`table3.fieldy` AS 'fieldname'
.....
FROM ....
WHERE....
and i would like to change this query into something like this:
SELECT
`table1`.*,
`table`.*,
`table3.fieldy` AS 'fieldname',
(SELECT col1, col2, (case when (action == 2 and state == 0) then 1 else 0 end) as state from tbl1) AS 'fieldname2'
......
FROM....
WHERE....
now, for where clause for instance, you can add text to the query by using
productCollection->getSelect()->where('query text');
but how could I add custom query text to the first part of the select?
Many thanks