摘要:
复制个新表,数据 结构 会进行复制,约束是不能进行复制的 select top 0 * into [新表的名称] from [旧表的名称] 效率最高 TOP :获取前多少行数据 select Top 10 Percent * from [表的名称] select distinct * from [表 阅读全文
摘要:
public partial class Form2 : Form { public Form2() { InitializeComponent(); } public Form2(string str,Delegate de) : this()//调用当前空构造函数 { label1.Text = 阅读全文