Hi all,
I'm working on conversion of a VB application from MS Access database to SQL Server. in original source code , there are lot of SQL statement with jet SQL FIRST() function, for example :
Select Custno,Min(qtyShip),First(Shipvia) from SO Group by Custno;
I tried to use the original SQL , but I got Error message that says <'first' is not a recognized function name>.
is there any Equivalent for First() function in ANSI Sql ( in MS SQL Server 7.0 )
thanks
I'm working on conversion of a VB application from MS Access database to SQL Server. in original source code , there are lot of SQL statement with jet SQL FIRST() function, for example :
Select Custno,Min(qtyShip),First(Shipvia) from SO Group by Custno;
I tried to use the original SQL , but I got Error message that says <'first' is not a recognized function name>.
is there any Equivalent for First() function in ANSI Sql ( in MS SQL Server 7.0 )
thanks