Is it possible to use TRY CATCH blocks in SQL Selects?
For stuff similar to this for example:
select
order,
CONVERT(DATETIME, orderDate)
from orders
What's the best way of handling this scenario?
|
|
Is it possible to use TRY CATCH blocks in SQL Selects? For stuff similar to this for example:
What's the best way of handling this scenario?
|
||||||||
|
|
|
I don't know about try-catch, but in SQL Server you have the ISDATE function and can there for do something like
|
||
|
|
|
|
I don't think a try catch is possible inside a select, but outside is possible when you're working with stored procedures.
|
||
|
|
|
|
In the SELECT clause itself, no. You can test for a date though using ISDATE()
|
||
|
|
|
|
You can use ISDATE: SELECT ISDATE('11/13/2009') SELECT ISDATE('13/11/2009') |
||
|
|