Click to See Complete Forum and Search --> : SQL format


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,

RickCrone
October 20th, 2005, 04:00 PM
I find that for SQL numeric type I can use the ' charaters aroung the number and it works fine.

Have you tried this with your 'special' types?

Ejaz
October 21st, 2005, 02:15 AM
[ Redirected Thread ]