Hi I am upsizing the access database to SQL 2005.
I currently converting Access Query's to SQL stored procs and functions but i have got stuck on one issue.
In access there is a update statement that has an IIF in the where clause, i have tried replicating this in T-SQL buy using case statement but it does not work.
in access the where looks some thing like this Where IIF(table1.Column1 = 0,Table2.column1,Table3.Column1)
Any one know how i can best replicate this behavior
Dagz