Sorry to disagree with you swampBoogie but the figures speak otherwise:
SELECT * FROM mytable WHERE myfield NOT IN ('F', 'd')
RETURNS 219 rows
SELECT * FROM mytable WHERE (myfield != 'F') AND (myfield != 'd')
RETURNS 260
SELECT * FROM mytable WHERE (myfield != 'F') OR (myfield != 'd')...
The IN comparison operator seems to completely disregard case-sensitivity enforced by BINARY at table creation.
Example, the queries:
(i) SELECT * FROM mytable WHERE myfield NOT IN ('F', 'd');
(ii) SELECT * FROM mytable WHERE (myfield != 'F') OR (myfield != 'd');
return completely different sets...
Does anyone know if SCO supports multiple IP addresses on one hardware interface?
I use Linux quite a bit and support for multiple IP addresses on one HW interface is straightforward.
Can't seem to sort this one out!
Many thanks
xencatx
I have set up a SCO box to IP-print to an HP Laserjet.
Prints fine but I have a problem with the \n\r thingy.
Text prints from top LH to bottom RH.
What (i think) I need is an output filter e.g.
... printcap snippet ...
of=/usr/local/myoutputfilter........................
Does anyone know of a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.