Advertisement
Guest User

Untitled

a guest
Sep 10th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT manf
  2. FROM(
  3.     SELECT manf, "pc" as type
  4.     FROM products
  5.     JOIN pc ON pc.model = product.model) as pcs
  6. JOIN (
  7.     SELECT manf, "lt" as type
  8.     FROM products
  9.     JOIN laptop ON laptop.model = product.model) as lps ON lps.manf = pc.manf;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement