MYSQL add counter in query


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. SET @N = 0;
  2. SELECT @N := @N +1 AS numero, nome,stipendio,genere FROM persone;

Report this snippet


Comments


You need to login to view comments.