Advertisement
saleks28

Untitled

Oct 13th, 2020
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.24 KB | None | 0 0
  1. SELECT Computer_System.Code
  2. FROM Computer_System
  3. WHERE NOT EXISTS
  4. (
  5.     SELECT Software_CS.Code_CS
  6.     FROM Software_CS INNER JOIN Applications
  7.     ON Software_CS.Code_Software=Applications.Code
  8.     WHERE Computer_System.Code=Code_CS);
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement