K kanjeep Registered User. Local time Today, 05:04 Joined May 21, 2007 Messages 19 Oct 16, 2007 #1 How do I get my query to only pull out the records that have low values(*LV)/no value in a field?
Cosmos75 Registered User. Local time Today, 07:04 Joined Apr 22, 2002 Messages 1,281 Oct 16, 2007 #2 What would be considered a low value? The following SQL shows data from tblData where lngValue = Null or lngValue < 5. Code: SELECT tblData.* FROM tblData WHERE (tblData.lngValue Is Null) OR (tblData.lngValue<5);
What would be considered a low value? The following SQL shows data from tblData where lngValue = Null or lngValue < 5. Code: SELECT tblData.* FROM tblData WHERE (tblData.lngValue Is Null) OR (tblData.lngValue<5);
B ByteMyzer AWF VIP Local time Today, 05:04 Joined May 3, 2004 Messages 1,409 Oct 16, 2007 #3 kanjeep, Your question is ambiguous at best, and gives no clear specification of your requirement. Suppose you post an example of the data you are attempting to query, along with an example of the expected query results.
kanjeep, Your question is ambiguous at best, and gives no clear specification of your requirement. Suppose you post an example of the data you are attempting to query, along with an example of the expected query results.