兰保明

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2011年8月15日

摘要: select sno,avg(score) from scgroup by sno having avg(score)>60 阅读全文
posted @ 2011-08-15 22:55 兰保明 阅读(166) 评论(0) 推荐(0)

摘要: 1 StringBuilder str = new StringBuilder(); 2 foreach (Control ctr in this.Page.Controls[3].Controls) 3 { 4 if (ctr.GetType().Name == "CheckBox") 5 { 6 CheckBox cb = (CheckBox)ctr; 7 if (cb.Checked) 8 str.Append(cb.Text + "<br/>"); 9 }10 }11 Literal1.Text = str.ToString(); 阅读全文
posted @ 2011-08-15 10:56 兰保明 阅读(128) 评论(0) 推荐(0)

摘要: SELECT top 1 * FROM [GpsNew].[dbo].[InstrumentType] where InstrumentID not in(select top 10 InstrumentID from InstrumentType) 阅读全文
posted @ 2011-08-15 10:02 兰保明 阅读(173) 评论(0) 推荐(0)