Show the MySQL queries running right now

SELECT id, user, db, time, state, LEFT(info, 120) AS query
  FROM information_schema.processlist
 WHERE command <> 'Sleep'
 ORDER BY time DESC;