I am using MySQL database. There is a cars table in my database, cars table has several columns, one of the columns is named "country".
I use the following query to fetch 2000 cars from the table:
SELECT * FROM cars LIMIT 1,2000;
I got the result successfully, the country column shows all the countries.
However, when I use the following query to fetch 2000 cars from the table:
SELECT country FROM cars LIMIT 1,2000;
I got 2000 results but the country column now are all empty values. Why??? What could be the reason?
(I have only 100 car object have empty country, weired I got all empty country value for 2000 results in the 2nd query.)