Guest User

Untitled

a guest
Feb 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.43 KB | None | 0 0
  1.     SELECT q.*, qt.*, u.username, u.user_id, u.user_colour
  2.         FROM
  3.             (SELECT * FROM azforum__quotescript_quotes
  4.             WHERE quote_visible = 1
  5.             ORDER BY quote_date DESC
  6.             LIMIT 10) q
  7.         LEFT JOIN
  8.             azforum__users u
  9.         ON
  10.             q.quote_uid = u.user_id
  11.         JOIN
  12.             azforum__quotescript_quotetag qt
  13.         ON
  14.             q.quote_id = qt.quote_id
Add Comment
Please, Sign In to add comment