Changes for page Predoctoral staff: historical record
Last modified by Ricardo Julio Rodríguez Fernández on 2025/07/13 08:08
From version 16.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/17 07:20
on 2024/01/17 07:20
Change comment:
There is no comment for this version
To version 17.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/20 09:42
on 2024/01/20 09:42
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -5,9 +5,9 @@ 5 5 6 6 def sql = new Sql(services.component.getConnection()) 7 7 8 - println "|=Pid|= Surname|= Name|= Category" 9 - sql.rows("SELECT PersonnelID,Surname,Name,Category FROM IGFAE_Personnel ORDER BY Surname").each{ 10 - println "|${it.PersonnelID}|${it.Surname}|${it.Name}|${it.Category}" 8 + println "|=n|=Pid|= Surname|= Name|= Category" 9 + sql.rows("SELECT ROW_NUMBER() AS n, PersonnelID, Surname, Name, Category FROM IGFAE_Personnel ORDER BY Surname").each{ 10 + println "|${it.n}|${it.PersonnelID}|${it.Surname}|${it.Name}|${it.Category}" 11 11 } 12 12 sql.close() 13 13