I need a list with three columns. column 1st and 3rd having values while 2nd as null. Can I do it through HQL query?
I need something like this:
select id, null, name from MyClass
Where MyClass as well as underlying table has only two properties/columns ie, "id" and "name"