Skip to content
Advertisement

how to update column with row number in group by result in MySQL

Sample Data:

Desire Data:

how to write a sql to update the room seat number to serial num in MySQL 5.7? the room’s seat is from 2-20.

Advertisement

Answer

One option uses the update/join syntax. In MySQL 5.7, where window functions are not available, you can emulate row_number() with a correlated subquery (which is somehow safer than user variables):

Demo on DB Fiddle:

id | room_id | seat_num
:- | ------: | :-------
1  |       1 | 1       
2  |       1 | 2       
3  |       2 | 1       
4  |       2 | 2       
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement