After importing a PARADOX 8 table to SQL Server 2000 I would like to convert a char field into a float format because the values are numeric like "0,08333".
In Access 2000 I use then following querystring:
IIf(Fix([field])>0,Fix([field]),0)+[field]-Fix([field]) AS newfield
Who can I convert this in SQL-Server?
Thanks in advance
Stefan Riech
In Access 2000 I use then following querystring:
IIf(Fix([field])>0,Fix([field]),0)+[field]-Fix([field]) AS newfield
Who can I convert this in SQL-Server?
Thanks in advance
Stefan Riech