Skip to content
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

分表后子查询嵌套后结果不符合预期 #2943

Open
zengxiaochao opened this issue Dec 27, 2023 · 0 comments
Open

分表后子查询嵌套后结果不符合预期 #2943

zengxiaochao opened this issue Dec 27, 2023 · 0 comments
Assignees
Labels

Comments

@zengxiaochao
Copy link

t_dsm 按照字段分表,分了128张
v 1.6.6.1

select * from t_dsm where id='7';
-- 被解释为:SELECT * FROM t_dsm_x WHERE id= '7'
select x.* from (select * from t_dsm where id='7') x;
-- 被解释为:SELECT * FROM t_dsm_x

请问这是配置问题,还是说我的语法问题呢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants