In This table I want sum of number_of_provisioning_jobs based on Start_Time with only in MYSQL.
In Oracle I can use "over (partition by columns_name " I can use, but MYSQL I didn't get any option.
select Start_Time,
Manufacturer,
Model,
Number_of_Provisioning_Jobs,
sum(Number_of_Provisioning_Jobs) over(partition BY Start_Time) Toatl1,
ROW_NUMBER() OVER(PARTITION BY Start_Time ORDER BY Start_Time) as rank
from (another tables select query) t
How to get the Sum value based on only one column?