vote up 1 vote down star

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?

flag

1  
If IsDate is true, then you can cast it as a datetime. That's the point of IsDate. – ck May 28 at 13:56
@JohnIdol: what do you mean by "standard". ISO is of a standard for an example. What are different formats there for orderDate? – Sung Meister May 28 at 14:05
sorry - I was getting confused - IsDate is fine! – JohnIdol May 28 at 14:56

4 Answers

vote up 4 vote down check

I don't know about try-catch, but in SQL Server you have the ISDATE function and can there for do something like

CASE WHEN ISDATE(orderDate) = 1 THEN CONVERT(DateTime, orderDate) ELSE GETDATE() END
link|flag
vote up 1 vote down

I don't think a try catch is possible inside a select, but outside is possible when you're working with stored procedures.

begin try
    select cast(strartnr as int) from table
end try
begin catch 
    select 10000 from table
end catch
link|flag
vote up 1 vote down

In the SELECT clause itself, no.

You can test for a date though using ISDATE()

select 
   order, 
   CASE WHEN ISDATE(orderDate) = 1 THEN CONVERT(DATETIME, orderDate) ELSE NULL END
from orders
link|flag
vote up 1 vote down

You can use ISDATE:

SELECT ISDATE('11/13/2009') SELECT ISDATE('13/11/2009')

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.