Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for SQL CASE statements #23

Closed
hisystems opened this issue Mar 5, 2012 · 1 comment
Closed

Add support for SQL CASE statements #23

hisystems opened this issue Mar 5, 2012 · 1 comment
Assignees

Comments

@hisystems
Copy link
Owner

Add support for the SQL CASE statement. Only TSQL support is required at this stage.

@ghost ghost assigned hisystems Mar 5, 2012
@hisystems
Copy link
Owner Author

http://msdn.microsoft.com/en-us/library/ms181765.aspx

Simple CASE expression: 
CASE input_expression
     WHEN when_expression THEN result_expression [ ...n ]
     [ ELSE else_result_expression ]
END
Searched CASE expression:
CASE
     WHEN Boolean_expression THEN result_expression [ ...n ]
     [ ELSE else_result_expression ]
END

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant