摘要: <asp:TextBox ID="txtStyleNO" runat="server" Width="146px" style="text-transform:capitalize"></asp:TextBox> 阅读全文
posted @ 2013-03-27 16:18 KyrieYang 阅读(784) 评论(0) 推荐(0)
摘要: //初使数据1 x1 x2 y2 y2 y3 z3 Z4 U//-----------------删除重复记录后--------------------------1 x2 y3 z4 u//这题用临时表来解决应该会方便的多 当然还有其它办法select distinct * into #临时表名 from 你的表;truncate from 你的表insert into 你的表 from #临时表//这里临时表作为一个中间过渡的作用 阅读全文
posted @ 2013-03-27 10:47 KyrieYang 阅读(180) 评论(0) 推荐(0)