How to solve the WHERE clause problems?

Solution 1:

The statement LIMIT must be mentioned last.

SELECT DISTINCT 
    start_station_name
FROM
    bigquery-public-data.london_bicycles.cycle_hire
WHERE  
    bike_id = 1710
LIMIT 1000;

enter image description here

ref: https://www.w3schools.com/sql/sql_top.asp