DPQL_ALIAS performs the same function as the 'AS' i.e. it renames expressions to something more readable.
When writing complex queries though it can be easier to use as it's perhaps more obvious where it should be placed.
The example query below will generate a matrix table showing number of tickets created grouped by agents and date created.
SELECT DPQL_COUNT()
FROM tickets
GROUP BY DPQL_MATRIX(tickets.agent, DATE_FORMAT(tickets.date_created, '%Y-%M')) copy
However we've used the DATE_FORMAT function to format the date so they are grouped by month and year.
This works but as you can see in the image below the date column shows the whole query for its title.
What we can do though is amend this with an alias to something more sensible:
SELECT DPQL_COUNT()
FROM tickets
GROUP BY DPQL_MATRIX(tickets.agent, DPQL_ALIAS(DATE_FORMAT(tickets.date_created, '%Y-%M'), 'Date Created')) copy
Which would render as:
It's simply a case of adding the ALIAS function before the element you want to rename and enclosing the brackets so it should be easy to place even in particularly complex queries.
Please log in or register to submit a comment.