select cast(1 as bit) from Orders where Order_ID = #dummy# select cast(155 as tinyint) from Orders where Order_ID = #value# select cast('a' as char) from Orders where Order_ID = #value# select cast('2003-02-15 8:15:00' as datetime) as datetime from Orders where Order_ID = #value# select cast(1.56 as decimal(9,2)) from Orders where Order_ID = #value# select cast(99.5 as float) from Orders where Order_ID= #value# select cast('CD5ABF17-4BBC-4C86-92F1-257735414CF4' as UniqueIdentifier) from Orders where Order_ID = #value# select cast(32111 as SmallInt) from Orders where Order_ID = #value# select cast(999999 as int) from Orders where Order_ID = #value# select cast(9223372036854775800 as bigint) from Orders where Order_ID = #value# select cast(92233.5 as real) from Orders where Order_ID = #value# select 'VISA' from Orders where Order_ID = #value#