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
SELECT
m.id as 'user_id',
m.name as 'user_name',
null as 'user_age'
FROM
member m
UNION