TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
2.1k
473.7k
Group by with no aggregation expression is not supported
Oct 16 2019 2:58 AM
Hi Team
I have this query in azure, what the script is trying to do is to get a date from current stamp. using select to char(sysdate, 'DD/MM-YYY HH:MI:SS AM') from dual).
SELECT
illuminance
as
illuminance, temperature
as
temperature, (
select
to_char(sysdate,
'DD/MM/YYYY HH:MI:SS AM'
)
from
dual)
AS
Date
INTO
[PowerBIVisualizationOutput]
FROM
[PowerBIVisualizationInput]
GROUP
BY
illuminance, temperature, TumblingWindow(
minute
,5)
But i am getting an error that group by with no aggregation expression is not supported. What could i improve from this logic? Please assist and provide an improvement based on what i have.
Reply
Answers (
1
)
Maria DB advantages over MySQL,MySQL advantages over MariaDB
Could you please any one answer correct the query