You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
请问这是配置问题,还是说我的语法问题呢
The text was updated successfully, but these errors were encountered:
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
请问这是配置问题,还是说我的语法问题呢
The text was updated successfully, but these errors were encountered: