SQL 7 will not properly perform this query<br>
SELECT * FROM TABLE WHERE FIELD LIKE 'A%'<br>
when the field contains zero length strings. In a table where only a few records actually contained values and the default value of the field was "" such a query returned the entire table. For various reasons I do not wish to have the default value be NULL. Is there anyway around this??
SELECT * FROM TABLE WHERE FIELD LIKE 'A%'<br>
when the field contains zero length strings. In a table where only a few records actually contained values and the default value of the field was "" such a query returned the entire table. For various reasons I do not wish to have the default value be NULL. Is there anyway around this??