Untitled

From Soiled Tamarin, 4 Months ago, written in Plain Text, viewed 57 times.
URL http://codebin.org/view/7ed5ad26 Embed
Download Paste or View Raw
  1. SELECT s.last_name AS employee_last_name,
  2.        s.employee_id AS manager_last_name
  3. FROM staff AS s
  4. LEFT JOIN staff ON s.reports_to = s.employee_id;

Reply to "Untitled"

Here you can reply to the paste above