G
Guest
I need to create a query for a report
There is a column called Keywords which contains strings of keywords separated by semicolon
I need to produce a report counting records containing keyword
e.g.
row 1 keywords = "hardware;printer;ribbon
row 2 keywords = "hardware;monitor;screen
The report would need to print
hardware
printer
ribbon
monitor
screen
I'm having a hard time figuring out how to extract the keywords in SQL. I can only think of reading a recordset to extract them, but then how do I create the report ?
There is a column called Keywords which contains strings of keywords separated by semicolon
I need to produce a report counting records containing keyword
e.g.
row 1 keywords = "hardware;printer;ribbon
row 2 keywords = "hardware;monitor;screen
The report would need to print
hardware
printer
ribbon
monitor
screen
I'm having a hard time figuring out how to extract the keywords in SQL. I can only think of reading a recordset to extract them, but then how do I create the report ?