2013年2月20日
摘要: SQL常用命令使用方法1) 数据记录筛选:sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]"sql="select * from 数据表 where 字段名 like %字段值% order by 字段名 [desc]"sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]"sql="select * from 数据表 where 字段名 in ( 值1 , 值2 , 值3 )"sql=& 阅读全文
posted @ 2013-02-20 18:48 道法自然smile 阅读(203) 评论(0) 推荐(0)