对于类似的东西,例如:
select order,CONVERT(DATETIME,orderDate) from orders
处理这种情况的最好方法是什么?
CASE WHEN ISDATE(orderDate) = 1 THEN CONVERT(DateTime,orderDate) ELSE GETDATE() END