You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_5C17.sql 177B

123456
  1. USE ex;
  2. SELECT departments.department_number, department_name, employee_id, last_name
  3. FROM departments,employees
  4. ORDER BY departments.department_number ASC;
  5. /* a cross join */