I recently gone through something and found a unique way of aliasing. I thought it must be share so other techies also aware of it (or might be you already aware of it). See below example SELECT *FROM (VALUES (‘Rajat’,30), (‘Sandeep’,40), (‘Sunil’,35), (‘Shreya’,50), (‘Virendra’,45)) AS T(Name,Runs) Now when you it you will get following result …