I have the following database:
I have a button that I has the following script:
checkReports = system.db.runScalarQuery("SELECT Client FROM Tracker WHERE SendReminder IN ('X')")
self.getSibling("TextField").props.text = checkReports
The problem is, my SQL query is only returning the first client “A” in the textbox, and not the rest of the clients. How can I return the name of each client that has an X in their “SendReminder” column? So in this case, it would return “A, B, E”
Thank you