I use KDB with a tool that let me set queries. With this tool, only the parameters (filter value) can be changed with user interaction, not the structure of the query. I need a query to be run on user action. By default, I want it to select every rows, and after he select something, I want the query to be filtered by his selection.
For example: By default: select from quote where symbol = *
After the user chooses a symbol: select from quote where symbol = `AAPL
However, the default example doesn't work, because there is no * wildcard in KDB, unlike SQL. How can I get all rows by default then?