Can anyonen help with Teradata?
I want to create a query that is a standard
select count(*)
from Table
where Column = Something
but has a group by time period done by 5 minute time intervals the time column is in ‘Time’ format
any idea?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Something like:
(SQL:2003’s
FLOORis a common way to do periodic grouping, but I believe Teradata doesn’t support it, hence then-(n MOD m)construct.)