Run this and see the output
select $
Published under: SQL Server Tips · · · ·
Looks like $ indicating its money datatype. and an empty value is printing as 0.00.
it is money type
SELECT cast(sqlvariantproperty($,'BaseType') as varchar(20))
I saw this trick to find the datatype previously..But i forgot this..
Thank you...