leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE | |
0620.sql (87B)
1 SELECT * 2 FROM Cinema 3 WHERE id % 2 = 1 AND description != 'boring' 4 ORDER BY rating DESC