Reputation: 2584
Is there a method to purposely return NULL
from a TSQL query?
Upvotes: 0
Views: 129
Reputation: 3771
I don't use Sybase, but you should be able to do something like:
SELECT CAST(NULL as int) AS NULLint --specify the appropriate datatype
Upvotes: 1