I have a table like the one shown below (simplified example):
Customer_ID Orders
1 10
2 15
3 5
4 8
Now I would like to generate an extra column that is the maximum value of the Orders column, that is, in the four rows a 15 should appear, but when I try it only calculates the maximum of the row, that is, that duplicates the Orders column.
Thank you very much in advance.
Greetings.