怎样用ASP在SQL数据库中查询一个表中的内容并显示?

2024-11-29 14:51:33
推荐回答(3个)
回答1:

select * from cp1 where zclx='有限责任公司' order by id desc
注:
select(查询) *(所有字段) from cp1(从cp1表中) where(条件) zclx='有限责任公司'(字段为zclx中文字是有限责任公司的记录) order by id desc (按照id来排序,desc代表降序)

请HI我帮你,这里说不清楚,还要看数据库连接

回答2:

select * from cp1 where zclx='有限责任公司' order by id desc

回答3:

select * from cp1 where zclx='有限责任公司' order by id
CP1 表名
where 条件是
ORDER 排序