Hi everyone,
I have a query that returns rows for search results. The first column is a Category ID that, in the output, is displaying the ID number. I'd like the output to display the name of the category, not the ID number (see below)
This is my query:
SELECT *
FROM Products
WHERE 0=0
AND CatID = #FORM.CatID#
So, Instead of:
Category | 3
Name | Bill Nye
Size | Large
I'd like:
Category | Shirts
Name | Bill Nye
Size | Large
Thanks
Rick
I have a query that returns rows for search results. The first column is a Category ID that, in the output, is displaying the ID number. I'd like the output to display the name of the category, not the ID number (see below)
This is my query:
SELECT *
FROM Products
WHERE 0=0
AND CatID = #FORM.CatID#
So, Instead of:
Category | 3
Name | Bill Nye
Size | Large
I'd like:
Category | Shirts
Name | Bill Nye
Size | Large
Thanks
Rick