数据记录筛选:
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"

 

相关文章:

  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2021-04-24
猜你喜欢
  • 2022-01-20
  • 2022-12-23
  • 2022-02-22
  • 2022-02-23
  • 2021-11-04
  • 2021-05-12
  • 2022-12-23
相关资源
相似解决方案