How many rows will we get after running this SQL query?
Select
flight_id,
passengers,
registered_at,
updated_at,
departure,
destination,
arrived_at,
status
FROM flights
WHERE updated_at > "2022-01-01" and departure = "TBS" and status = "finished"
LIMIT 1000;