Where Clause
Show me all data from orders table excluding '웹개발 종합반'.
select * from orders
where course_title != "웹개발 종합반";
Show me all data from orders created on 13th July 2020 and 14th July 2020.
select * from orders
where created_at between '2020-07-13' and '2...
olliekim.hashnode.dev1 min read