I have a query in which I need find a value within a field of the table. Eg.
<cfquery name="testq" datasource="#da#">
SELECT * FROM tblName WHERE #enteredvalue# IN(viewlist)
</cfquery>
viewlist is a column in the table with a comma delimited list as a field value. I am using msaccess. Does the IN() function work in access? If not, what would be the equivalent?
Chris
Chris Scott
The Whole Computer Medical Systems
<cfquery name="testq" datasource="#da#">
SELECT * FROM tblName WHERE #enteredvalue# IN(viewlist)
</cfquery>
viewlist is a column in the table with a comma delimited list as a field value. I am using msaccess. Does the IN() function work in access? If not, what would be the equivalent?
Chris
Chris Scott
The Whole Computer Medical Systems