We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As also described https://stackoverflow.com/questions/60989393/qpython-functional-queries
I am trying to make functional queries to q by passing where condition. when in q:
fn:{[c] t: (select from tbl); :?[t;c;0b;()]; }
in Python
c = [['=', numpy.string_('TradeId'), 123456]] result = conn.sendSync('fn', c)
the operator is passed as a string. I have tried with sending this as a symbol, as a Qfunction but doesn't work
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As also described
https://stackoverflow.com/questions/60989393/qpython-functional-queries
I am trying to make functional queries to q by passing where condition.
when
in q:
in Python
the operator is passed as a string. I have tried with sending this as a symbol, as a Qfunction but doesn't work
The text was updated successfully, but these errors were encountered: