下面的话是什么意思?
selectcount(*)astotalfrom'test'orderbyiddesc....
select count(*) as total from 'test' order by id desc .
展开
1个回答
展开全部
select count(*) as total from 'test' 表示查询 'test' 表中的记录总数,并取名为 total
既然是总数,肯定只有一条数据,所以 order by id desc 是多余的。可以去掉。
顺便说下 order by 是排序用的,order by 后面跟字段,意思是,根据那个字段排序,
至于desc 是降序的意思, asc和默认不写都是升序。
最后。你这个是mysql数据库吧,如果是sqlserver数据库应该是
select count(*) as total from [test]
既然是总数,肯定只有一条数据,所以 order by id desc 是多余的。可以去掉。
顺便说下 order by 是排序用的,order by 后面跟字段,意思是,根据那个字段排序,
至于desc 是降序的意思, asc和默认不写都是升序。
最后。你这个是mysql数据库吧,如果是sqlserver数据库应该是
select count(*) as total from [test]
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询