분류 전체보기
-
183. Customers Who Never Order mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 16:01
https://leetcode.com/problems/customers-who-never-order/?envType=study-plan&id=sql-i Customers Who Never Order - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select c.name as Customers from customers as c left join orders as o on c.Id = o.customerId where o.id is null;
-
584. Find Customer Referee mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:49
https://leetcode.com/problems/find-customer-referee/?envType=study-plan&id=sql-i Find Customer Referee - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com SQL에서는 비교 연산자에서는 NULL이 배제된다. (반면 논리 연산자에서는 NULL이 배제되지 않는다.) # Write your MySQL query statement below select name from customer wh..
-
1757. Recyclable and Low Fat Products mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:43
https://leetcode.com/problems/recyclable-and-low-fat-products/ Recyclable and Low Fat Products - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select product_id from products where low_fats = 'Y' and recyclable = 'Y';
-
595. Big Countries mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:40
https://leetcode.com/problems/big-countries/?envType=study-plan&id=sql-i Big Countries - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select name, population, area from World where area >= 3000000 or population >= 25000000;
-
303. Range Sum Query - Immutable javaLeetCode_Study_Plan/Programming Skills 2022. 9. 25. 15:22
https://leetcode.com/problems/range-sum-query-immutable/?envType=study-plan&id=programming-skills-i Range Sum Query - Immutable - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class NumArray { int[] nums; public NumArray(int[] nums) { this.nums = nums; } public int sumRange(int l..
-
1603. Design Parking System javaLeetCode_Study_Plan/Programming Skills 2022. 9. 25. 15:18
https://leetcode.com/problems/design-parking-system/?envType=study-plan&id=programming-skills-i Design Parking System - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class ParkingSystem { int big_room, medium_room, small_room; public ParkingSystem(int big, int medium, int small) ..