对 MySQL 子查询感到困惑
我正在尝试学习如何进行子查询,但我对这个简单示例的问题感到非常困惑。
我的第一次尝试是
SELECT COUNT(SELECT * FROM my_table);
但没有成功(我猜是因为我需要一个临时表?)所以我尝试了这个:
SELECT COUNT(items)
FROM (SELECT * FROM my_table) AS items;
为什么我会得到以下信息:
1054:“字段列表”中存在未知列“项目”
I'm trying to learn how to do subqueries, and I'm really confused at what's wrong with this simple example.
My first try was
SELECT COUNT(SELECT * FROM my_table);
but that didn't work (I guess because I need a temporary table?) so I tried this:
SELECT COUNT(items)
FROM (SELECT * FROM my_table) AS items;
Why do I get the following:
1054: Unknown column 'items' in 'field list'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您收到错误是因为在此示例中
items
是表(因为它是别名),而不是列。最简单的解决方案是使用:聚合函数(即:COUNT、MIN、MAX、AVG 等)仅适用于列引用,但有些函数接受 [table].* 作为参数。
You're getting the error because in this example
items
is a table (as it is an alias), not a column. Simplest solution is to use:Aggregate functions (IE: COUNT, MIN, MAX, AVG, etc) only work on column references, but some accept [table].* as a parameter.