问题标签 [mysql-error-1111]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
mysql - Group by with calendar quarter as column
I want the sum of one column of my table, grouped by calendar quarter. To be more specific, what I have now is the sum of the column I want month by month:
The code above is fine and works for me. It returns the sum of the column I want group by months. E.g.: January: 100, February: 200, March: 300. That's it until December.
My question is how to do this sum grouped by calendar quarter. To be specific, and looking for the example above, now I want to create a query which gives me the sum of values of [January, February, March]=600, [April, May, June], [July, August, September], [October, November, December]. I tried to do with the code below but I got an error:
1111 - invalid use of group function.
What's wrong?
mysql - MySQL 错误 #1111
我有一个球员表现表,我想返回每个球员的高分,如果他们在达到这个分数时没有出局,则在其后添加一个星号 ('*')。这是我到目前为止构建的查询,但它给了我错误 #1111: group 函数的无效使用
我看过其他时候出现这个错误,它应该表明何时通过 MAX/MIN 函数执行 SUM 函数,但我看不到在我的查询中发生这种情况
我哪里错了,我将如何纠正这个问题,grma
mysql - 错误 111,组函数使用无效
使用我的代码,我试图找到所有违反以下一致性约束的行程。每次行程的最后一站必须等于行程的总行程数”
mysql - 使用内部连接更新 = 错误代码:1111。组函数的使用无效
执行以下查询时,我在帖子标题中收到 1111 错误。基本上,我尝试使用表 2 (search_upload_quotes) 中的数据更新表 1 (special_valuation_temp)。我想获得更新表 1 的最小和最大报价值。
看来我不能在 SET 子句中使用 MIN() 和 MAX() 函数。还有另一种方法可以做到这一点吗?
mysql - 遇到 SQL 错误 1111 的问题
我正在创建一个客户有多个预订的实例。为此,每次在预订表中多次列出客户编号时,这表示他们有多个预订(这也是条件)。不幸的是,当我尝试运行此查询时,我得到:
错误代码:1111(无效使用组功能)。
这是我在下面所做的。
我对 SQL 很陌生,任何建议都会很有帮助。
mysql - 错误代码:1111。无效使用组函数 (SQL)
我在 MySQL 中为牙科诊所创建了这个查询
SELECT Paz.Nome, Paz.Cognome
FROM Paziente AS Paz, Visita AS Vis
WHERE Vis.Paziente=Paz.CF AND MAX(Vis.Parcella)=Vis.Parcella
但不适用于错误 1111。请帮助我
mysql - MYSQL ERROR 1111 (HY000): 组函数使用无效
有两张桌子
- 项目(项目ID,项目名称,项目城市);
- 分配(employee_id,employee_name,持续时间);
现在我必须找到在哪个项目中分配了最大数量的员工。我写了一个sql查询
但此查询给出以下错误:
ERROR 1111 (HY000):组功能使用无效。我正在使用 mySql。
mysql - Mysql 错误 1111:在更新中使用组函数无效
我在 mysql 代码中有一个错误,我正在尝试进行更新,但我得到了错误
错误 :
“错误 1111:无效使用组功能”
你能帮我知道我的代码有什么问题吗?我是 MySQL 的初学者
mysql - 错误代码:1111. 组函数使用无效 MYSQL ERROR
我正在尝试查找低于课程平均成绩的学生名单
我有这个查询