This query is marked as a draft This query has been published by Perryprog.

SQL

AخA
 
SELECT user_id,
       user_name,
       user_registration,
       user_editcount,
       CONCAT('https://en.wikipedia.org/wiki/User:', user_name) as link
FROM user
WHERE (user_name COLLATE UTF8_GENERAL_CI LIKE 'prince%digital')
  AND user_registration IS NOT NULL
ORDER BY user_registration DESC
LIMIT 10;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...