Help for this page

Select Code to Download


  1. or download this
    #! pesudocode
    
    ...
      comment_text varchar,
      ...
    }
    
  2. or download this
    SELECT *
    FROM Concert c
    INNER JOIN Entity e ON c.id=e.id
    
  3. or download this
    SELECT *
    FROM Play p
    INNER JOIN Entity e ON p.id=e.id
    
  4. or download this
    SELECT *
    FROM Comment k
    INNER JOIN Entity e ON k.entity=e.id
    INNER JOIN Play p ON k.entity=p.id
    
  5. or download this
    SELECT *
    FROM Comment k
    INNER JOIN Entity e ON k.entity=e.id
    LEFT JOIN Play p ON k.entity=p.id
    LEFT JOIN Concert c ON k.entity=c.id