li0000
October 18th, 2005, 06:30 PM
Hi
There are some different data types. each data type will have special format like:
Select *
From tablename
Where
att1 = 1
when att1 is integer, this will be OK.
But when att is "CHAR"
It should be:
Select *
From tablename
Where
att1 = '1'
My question is:
When data type is "LONFVARBINARY" or some other weird type, how can I write filter?
Where can I find document for it?
Thanks,
There are some different data types. each data type will have special format like:
Select *
From tablename
Where
att1 = 1
when att1 is integer, this will be OK.
But when att is "CHAR"
It should be:
Select *
From tablename
Where
att1 = '1'
My question is:
When data type is "LONFVARBINARY" or some other weird type, how can I write filter?
Where can I find document for it?
Thanks,