I have a query that I'm running through my code. In my form when the code is run it returns no results. When I copy the same query into the sql query builder it returns results. What's wrong?
Here's my query
SELECT distinct company.company_id, Company.Com_Name, c.nc, Company.Country_ID FROM c INNER JOIN Company ON c.c=Company.Country_ID where ( com_name like "*test*") order BY Company.Com_Name
I find that it's not returning results when it uses the operator like and *
Here's my query
SELECT distinct company.company_id, Company.Com_Name, c.nc, Company.Country_ID FROM c INNER JOIN Company ON c.c=Company.Country_ID where ( com_name like "*test*") order BY Company.Com_Name
I find that it's not returning results when it uses the operator like and *