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
Hi,
is it possible to do the following in code in Mechanoid DB through the API? SELECT MIN(column_name) FROM table_name;
What about raw queries?
Thanks!
The text was updated successfully, but these errors were encountered:
It should be possible to use the function in your column projection, ie:-
String cols= new String[] {"min(column_name) as alias_name"};
At the most there is no way to use a raw query out-of-the-box but its something I am looking at.
On 19 Apr 2014 16:17, mrjbg [email protected] wrote:
Hi, is it possible to do the following in code in Mechanoid DB through the API? SELECT MIN(column_name) FROM table_name; What about raw queries? Thanks! — Reply to this email directly or view it on GitHub.
— Reply to this email directly or view it on GitHub.
Sorry, something went wrong.
No branches or pull requests
Hi,
is it possible to do the following in code in Mechanoid DB through the API?
SELECT MIN(column_name) FROM table_name;
What about raw queries?
Thanks!
The text was updated successfully, but these errors were encountered: