Count Clause
The COUNT() function returns the number of rows that matches a specified criterion.
select count(*) from orders
From orders table, how many orders are paid with Kakaopay?
select count(*) from orders
where payment_method = 'kakaopay'
olliekim.hashnode.dev1 min read