Joost,
The spelling mistake from below will cause you an unwanted join with the
"customers" table if you have one, which is unconstrained by any where
clause, so it will take a carthesian product of the rest and the
customers table.
If this spelling mistake is just in the mail, please disregard.
Cheers,
Csaba.
> select customer.id, customer.name, orders.id
> from customers, orders
^^^^^^^^^
> order by customer.id, orders.id
> limit 25
>