我有一个有 35 列的数据库,其中一些列是空的,我已经创建了页面和查询以从数据库中检索数据,但问题是所有数据,包括空数据,我想知道是否有解决这些问题的方法。
3 回答
            1        
        
		
you can use the where clause in the query
like
 Select * from TableName where FieldName is Not Null And Field2 is not null 
Similarly you can add as many filters as you want
于 2013-06-09T17:09:26.247   回答
    
    
            0        
        
		
使用 WHERE 子句:
WHERE somefield IS NOT NULL
    于 2013-06-09T17:04:40.867   回答
    
    
            0        
        
		
于 2013-06-09T17:06:44.063   回答