TRACEYMARYLAND
Programmer
Hi i am doing this statement
SELECT * FROM FORM_VALUES
WHERE FORM_NAME = 'CUSTOMER_COMPLAINT.12.14.2004'
AND (FIELD_TYPE = 'A' OR FIELD_TYPE = 'D' OR FIELD_TYPE = 'N')
I am getting other values from the table that do not have FORM_NAME = 'CUSTOMER_COMPLAINT.12.14.2004'
I need to select where form_name = 'CUSTOMER_COMPLAINT.12.14.2004' and the field type is A or D or N
Please advise
Thanks
SELECT * FROM FORM_VALUES
WHERE FORM_NAME = 'CUSTOMER_COMPLAINT.12.14.2004'
AND (FIELD_TYPE = 'A' OR FIELD_TYPE = 'D' OR FIELD_TYPE = 'N')
I am getting other values from the table that do not have FORM_NAME = 'CUSTOMER_COMPLAINT.12.14.2004'
I need to select where form_name = 'CUSTOMER_COMPLAINT.12.14.2004' and the field type is A or D or N
Please advise
Thanks