Changes between Version 13 and Version 14 of AdminTips
- Timestamp:
- 2013-03-02T05:35:46Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdminTips
v13 v14 35 35 36 36 Replace EVENT_ID to event id and COURSE_ID to course id. 37 37 38 38 39 === Merge Students with Duplicated Accounts (the accounts starts with "s" and without) === … … 80 81 }}} 81 82 83 84 === Find Duplicate Students === 85 {{{ 86 #!sql 87 select id, username, student_no from users where student_no in (select student_no from (select student_no, count(*) c from users group by student_no having c > 1) as a) order by student_no, username; 88 }}} 89 82 90 === Merge Students old accounts into new ones === 83 91 The old student accounts using student number as username and the new ones uses PUID.