Hi here! How can i use null alias on union query u...
# exposed
u
Hi here! How can i use null alias on union query using Exposed? it is the query example that i want to write to exposed’s dsl. i want to write null alias at slice function
Copy code
SELECT
    m.id as 'user_id',
    m.name as 'user_name',
    null as 'user_age'
FROM
    member m

UNION