I'm converting an Access db to SQL Server. Several of the Access queries contain FORMAT in the select list such as
Format([Gross_Property_Area],"#,###" AS [Gr Prop Area]
Does T-SQL have anything equivalent or should the formatting be done in the application?
Also, ACCESS has an aggregate function FIRST. How should this be handled in SQL Server?
Format([Gross_Property_Area],"#,###" AS [Gr Prop Area]
Does T-SQL have anything equivalent or should the formatting be done in the application?
Also, ACCESS has an aggregate function FIRST. How should this be handled in SQL Server?