Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select constant as specific type
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01260641
Message ID:
01260645
Views:
12
This message has been marked as the solution to the initial question of the thread.
>Consider the following SELECT statement:
>
>SELECT Id,
>       0 AS MyNumber
>FROM   MyTable
>
>
>How can I make sure the MyNumber field is a specific type, e.g., tinyint or int?
>
>
>Thanks,
>Einar
SELECT Id,
       CAST(0 as int) AS MyNumber
FROM   MyTable
or
SELECT Id,
       CAST(0 as tinyint) AS MyNumber
FROM   MyTable
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform