You are on page 1of 1

-- How many of the customers made a booking in October 2017

SELECT COUNT(*) FROM customers;

SELECT * FROM bookings;

SELECT COUNT(DISTINCT(customer_id)) AS no_of_customers FROM bookings;

You might also like