数据记录筛选
Posted Xiao|Deng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据记录筛选相关的知识,希望对你有一定的参考价值。
数据记录筛选:
sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]" //order by sql="select * from 数据表 where 字段名 like ‘‘%字段值%‘‘ order by 字段名 [desc]" //like sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]" //top10 sql="select * from 数据表 where 字段名 in (‘‘值1‘‘,‘‘值2‘‘,‘‘值3‘‘)" //in sql="select * from 数据表 where 字段名 between 值1 and 值2" //between 值1 and 值2"
以上是关于数据记录筛选的主要内容,如果未能解决你的问题,请参考以下文章