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
在select 语句中出现的只查询。不能识别from 列表的 的字段。
CREATE TABLE temp_test1(id INT,NAME VARCHAR(30)); CREATE TABLE temp_test2(id INT ,salesid INT ,title VARCHAR(100));
INSERT INTO temp_test1 VALUES (1,'helo'),(2,'bilgo'),(3,'dolot'); INSERT INTO temp_test2 VALUES (1,1,'月光光'),(2,2,'品牌效应'),(3,3,'李白醉酒');
SELECT a.id,a.title,(SELECT b.name FROM temp_test1 b WHERE b.id = a.salesid) AS salesname FROM temp_test2 a
在 (SELECT b.name FROM temp_test1 b WHERE b.id = a.salesid) 子句中。识别不了a.salesid 环境
The text was updated successfully, but these errors were encountered:
该问题已修复. Releases (选择v1.2.3-32或以上版本)
v1.2.3-32
Sorry, something went wrong.
谢谢@hanchuanchuan
No branches or pull requests
在select 语句中出现的只查询。不能识别from 列表的 的字段。
CREATE TABLE temp_test1(id INT,NAME VARCHAR(30));
CREATE TABLE temp_test2(id INT ,salesid INT ,title VARCHAR(100));
INSERT INTO temp_test1 VALUES (1,'helo'),(2,'bilgo'),(3,'dolot');
INSERT INTO temp_test2 VALUES (1,1,'月光光'),(2,2,'品牌效应'),(3,3,'李白醉酒');
SELECT a.id,a.title,(SELECT b.name FROM temp_test1 b WHERE b.id = a.salesid) AS salesname
FROM temp_test2 a
在 (SELECT b.name FROM temp_test1 b WHERE b.id = a.salesid) 子句中。识别不了a.salesid
环境
The text was updated successfully, but these errors were encountered: