摘要: 1 package com.lonshin.chexiaodi.http; 2 3 import java.util.Date; 4 import java.util.List; 5 import java.util.Set; 6 import java.util.Timer; 7 import java.util.TimerTask; 8 import java.util.TreeSet; 9 10 import org.apache.http.NameValuePair; 11 import org.apache.http.message.BasicNameValu... 阅读全文
posted @ 2013-05-06 09:36 linsen@java 阅读(602) 评论(0) 推荐(0) 编辑
摘要: SQL常用语句(1) 数据记录筛选: sql="select * from 数据表 where 字段名=字段值 order by 字段名 " sql="select * from 数据表 where 字段名 like ‘%字段值%‘ order by 字段名 " sql="select top 10 * from 数据表 where 字段名 order by 字段名 " sql="select * from 数据表 where 字段名 in (‘值1‘,‘值2‘,‘值3‘)" sql="select * 阅读全文
posted @ 2013-05-06 00:40 linsen@java 阅读(145) 评论(0) 推荐(0) 编辑