IN Microsoft SQL Server we will do like this
SELECT *,AA=dbo.GET_Date()
FROM _profilesearch p
— n this is function we will call from select list
How to do same in MySQL npls
SELECT Get_Date() AS gid;
SELECT *,AA=SELECT ' GET_Date'
FROM _profilesearch p LIMIT 0,30;
1 Answer