-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
about subsql in XSQL #61
Comments
Thanks for your feedback. We will arrange the plan to solve it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for example i have a table, table name : sys.sys_config
desc sys.sys_config
variable string NULL
value string NULL
set_time timestamp NULL
set_by string NULL
i use sql:
select approx_count_distinct(variable) count from sys.sys_config
can get the result: 6
but if i use sql like this:
select * from (select approx_count_distinct(variable) count from sys.sys_config) as t
it will be error:
so , i think , maybe it use mysql function, mysql function not found it.
but , i test anther function: curtime
select * from (select curtime()) as t;
will be get another error:
The text was updated successfully, but these errors were encountered: