Incrementation mysql
SET @counter := 0;
SELECT
col_name,
@counter := @counter+1 as counter
FROM table_name
WiktorKw
SET @counter := 0;
SELECT
col_name,
@counter := @counter+1 as counter
FROM table_name