当前位置: 代码迷 >> ASP >> 在access中怎么实现 些方法
  详细解决方案

在access中怎么实现 些方法

热度:131   发布时间:2012-09-13 09:51:52.0
在access中如何实现 些方法
select id,cnname,t=1 from sw_SolClass_gb where lang=1 order by t asc ,sortid asc


如果在 access中这样写错 

Microsoft JET Database Engine 错误 '80040e10'

至少一个参数没有被指定值。 

便mssql中没问题,请问access中要怎么写

------解决方案--------------------
别说AC数据库了。你任何数据库都不能允许。
select id,cnname,t=1 from sw_SolClass_gb where lang=1 order by t asc ,sortid asc

t=1有这样写的吗???我咋不知道?

试试
select id,cnname from sw_SolClass_gb where lang=1 order by t asc ,sortid asc

------解决方案--------------------
select id,cnname,'1' as t from sw_SolClass_gb where lang=1 order by sortid asc

因为t=1,所以order by t asc无意义
  相关解决方案