am quite new to REST API.
Below is my select query using REST API
http://dummyserver/_api/web/lists/getbytitle(‘LstEmp’)/Items/?$select=EmpNo,Name,EmpNo
I want to put an alias name for the 2nd time written EmpNo column. As it is possible in normal SQL Select Statements
SELECT EmpNo,Name,EmpNo AS DummyName FROM Emp
Have been googling around for this. But didn’t found any thing.
Thanks in advance
Unfortunately this is not possible in the SharePoint REST API that I am aware of.