我使用sqlite3 数据库,里面有很多张表,表中有很多字段的数据,为什么使用where以后就是查不出来数据啊?

下面是我创建的表格式:
CREATE TABLE tableName(Lat Text,Lon Text,total_ozone Text,satallite_azimuth_angle Text,satallite_zenith_angle Text,solar_azimuth_angle Text,solar_zenith_angle Text)");
下面是我使用的SQL语句:
select total_ozne from FY3A_TOU_20090702 where Lat=88.5 and Lon=179.5;

我在doc窗口中使用这个SQL语句,没有数据出来?这是什么原因啊????

第1个回答  2015-05-21
select total_ozne from FY3A_TOU_20090702 where Lat='88.5' and Lon='179.5';本回答被网友采纳
相似回答