HelloIf i have an sql which looks something likeselect (select count(*) from A), (select count(*) from B)from DUALHow can i display a 3rd column which will be the difference between the 1st and 2nd column? Will using column aliases work? likeselect (select count(*) from A) as Col1, (select count(*) from

as Col2, Col1-Col2 from DUALPlease help?