I am using IIF condition in MSAccess to split two kind of rows into column why it is not possible in SqlServer or how can i do.
Convert Access to SQL Server
Collapse
X
-
Tags: None
-
In queries, I use SQL Case method as an equivalent to IIF:
For more investigation, It may be helpful if include here some MSAccess sample.Code:Case When (anyFlag <> 0 ) Then ... Else ...End
Comment
-
Originally posted by dorinbogdanIn queries, I use SQL Case method as an equivalent to IIF:
For more investigation, It may be helpful if include here some MSAccess sample.Code:Case When (anyFlag <> 0 ) Then ... Else ...End
Yes i already tryed that, but it wont run in Sql viewComment
-
I know that a SQL View can contain Case statements.
For further investigation, it may be helpful if include here some of your MSAccess sample, and even the SQL View not working code.Comment
Comment