ASP.NET中SQL语句用关联的为什么DATASET会提示类型不匹配的错误sql=“select content.id,shbname.shbname as 设备名称,content.content as 内容,content.shbuser as 值班员, content.shbdate as 时间 from content inner join shbname on content.shbid=shbname.shbid order by content.shbdate desc”用这个语句时提示objcmd.fill(ds,"content")的类型不匹配,当用这个语句的时候就不会提示错误:sql="select id,shbname as 设备名称,content as 内容,shbuser as 值班员, shbdate as 时间 from content order by shbdate desc"WHY?????