I'm traying to build a query that doing following:
I have a table with two columns:
items | manufacturers
------------------------------
ABC1 | golf
ABC1 | toyota
ABC1 | citroen
ABC2 | skoda
ABC2 | subaru
ABC3 | peugeot
ABC3 | renault
ABC3 | dodge
The access ask me for "Manufacturer", when I give part of it , I'm getting all items, where one of manufacturers that I asked.
Example for Input: *olf*
Output:
ABC1 | golf
ABC1 | toyota
ABC1 | citroen
Example for Input: *aru*
Output:
ABC2 | skoda
ABC2 | subaru
Example for Input: *aul*
Output:
ABC3 | peugeot
ABC3 | renault
ABC3 | dodge
Please help
Thanks
I have a table with two columns:
items | manufacturers
------------------------------
ABC1 | golf
ABC1 | toyota
ABC1 | citroen
ABC2 | skoda
ABC2 | subaru
ABC3 | peugeot
ABC3 | renault
ABC3 | dodge
The access ask me for "Manufacturer", when I give part of it , I'm getting all items, where one of manufacturers that I asked.
Example for Input: *olf*
Output:
ABC1 | golf
ABC1 | toyota
ABC1 | citroen
Example for Input: *aru*
Output:
ABC2 | skoda
ABC2 | subaru
Example for Input: *aul*
Output:
ABC3 | peugeot
ABC3 | renault
ABC3 | dodge
Please help
Thanks