leetcode

Leetcode submissions
git clone git://git.laack.co/leetcode.git
Log | Files | Refs | README

find-customer-referee.sql (172B)


      1 --Return all customers where the referee id is not equal
      2 --to 2
      3 --Runtime: 852ms Beats: 82.41%
      4 SELECT name 
      5 FROM Customer C
      6 WHERE C.referee_id != 2 OR C.referee_id IS NULL