I am in the process of migrating from Access local tables to using a SQL Server back-end database. I was trying to convert SQL strings within my Access application into stored procedures.
How would I convert the following SQL string from my Access application into a stored procedure ? A value would be stored in either the field Debits or Credits but not both fields on the same record. Perhaps I could use the SQL function IsNull but I'm not sure how to incorporate
2 fields into the IsNull SQL statement.
CREATE PROCEDURE dbo.procTest AS ...
Format(Nz([Debits],Nz([Credits],0)),'#.000') AS [Amount]
I get the error message:
Error 195: 'Nz' is not a recognized function name.
If I remove Nz, I get the error message:
Error 195: 'Format' is not a recognized function name.
How would I convert the following SQL string from my Access application into a stored procedure ? A value would be stored in either the field Debits or Credits but not both fields on the same record. Perhaps I could use the SQL function IsNull but I'm not sure how to incorporate
2 fields into the IsNull SQL statement.
CREATE PROCEDURE dbo.procTest AS ...
Format(Nz([Debits],Nz([Credits],0)),'#.000') AS [Amount]
I get the error message:
Error 195: 'Nz' is not a recognized function name.
If I remove Nz, I get the error message:
Error 195: 'Format' is not a recognized function name.