SQL Ternary Operator
Database
3
Posts
2
Posters
0
Views
1
Watching
-
Is there anything like C# style ternary operator in SQL?
-
Is there anything like C# style ternary operator in SQL?
No, however, you could simulated it by using CASE in a SELECT statement.
My: Blog | Photos | Next SQL Presentation WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More
-
No, however, you could simulated it by using CASE in a SELECT statement.
My: Blog | Photos | Next SQL Presentation WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More
Very many thanks for your great answer, Colin