I have a function that takes an argument, which is used in where where
function (string x) -> Now this will create a sql query that gives
select colname from tablename where columnname=x;
Now I want this function to output all the lines, i.e. equivalent query
select colname from tablename;
when I pass x = "Everything."
I want to create a general query that when I pass "Everything", then it should return to me all the other lines that filter my result.
source
share