i want to fetch the count from three different table which is not related. for which i am using this SQL query.
SELECT
(SELECT COUNT(DISTINCT id) FROM user) AS userCount,
(SELECT COUNT(DISTINCT id) FROM item) AS itemCount,
(SELECT COUNT(DISTINCT id) FROM sub_category) as categoryCount;
Is it possible to use DQL for the above query? or do i have to use rawSQL query?
I am using doctrine 1.2.4