Guest User

Untitled

a guest
Jan 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.30 KB | None | 0 0
  1. SELECT
  2.     category.category_id AS category_id,
  3.     image.filename AS image,
  4.     category.parent_id AS parent_id,
  5.     category.path AS path,
  6.     category.sort_order AS sort_order,
  7.     category.date_added AS date_added,
  8.     category.date_modified AS date_modified
  9. RIGHT JOIN image
  10. ON
  11.     category.image_id=image.image_id;
Add Comment
Please, Sign In to add comment