摘要: select top N-M+1 * from tablename where id not in (select top M-1 id from tablename order by id) order by id 阅读全文
posted @ 2022-02-09 09:49 密西西比的深蓝 阅读(71) 评论(0) 推荐(0)
摘要: 可以给文字加span,然后给图片float:left,给span加个和图片高度一致的line-height。 阅读全文
posted @ 2020-07-13 15:34 密西西比的深蓝 阅读(329) 评论(0) 推荐(0)
摘要: style='word-break:break-all' 阅读全文
posted @ 2016-09-29 16:32 密西西比的深蓝 阅读(138) 评论(0) 推荐(0)
摘要: <div align='left' style='white-space: nowrap; overflow: hidden; text-overflow: ellipsis;width: 800px;'> </div> 阅读全文
posted @ 2016-09-26 11:25 密西西比的深蓝 阅读(597) 评论(0) 推荐(0)
摘要: string Str="中文"; FileName = HttpUtility.UrlEncode(Str, Encoding.GetEncoding("GB2312")); 阅读全文
posted @ 2016-07-27 09:22 密西西比的深蓝 阅读(462) 评论(0) 推荐(0)
摘要: escape() 阅读全文
posted @ 2016-07-06 18:17 密西西比的深蓝 阅读(602) 评论(0) 推荐(0)
摘要: Char temp = Convert.ToChar(j + 65); 阅读全文
posted @ 2016-05-19 15:09 密西西比的深蓝 阅读(207) 评论(0) 推荐(0)
摘要: QuestionStr += "分数:评语:"; QuestionStr += ""; 阅读全文
posted @ 2016-04-20 12:46 密西西比的深蓝 阅读(419) 评论(0) 推荐(0)
摘要: for (int i = 0; i i; j--) { if (List[i] == List[j]) { List.RemoveAt(i); } } ... 阅读全文
posted @ 2016-03-17 10:01 密西西比的深蓝 阅读(141) 评论(0) 推荐(0)
摘要: 表结构:要求:查询有多个员工的工资不低于2000的部门编号(就是说如果一个部门的员工大于2000的人数有两个或两个以上就查询出来)sql语句:select [DEPARTMENT_ID],count([SALARY])from [DEPARTMENT]where [SALARY]>'2000'gro... 阅读全文
posted @ 2015-12-30 16:04 密西西比的深蓝 阅读(465) 评论(2) 推荐(0)