摘要:
1.INSERT INTO SELECT语句语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量。 Insert into Table2(a, c, d) select a,c,5 from Table1 2.SELECT INTO FROM语句语句形式为:SELECT vale1, value2 into Table2 from Table1要求目标表Tabl... 阅读全文
摘要:
namespace WindowsFormsApplication3{ public partial class Form1 : Form { public Form1() { InitializeComponent(); MatchGraphic(); } Random random = new Random(); Label firstLabel = null; Label lastLabel = null; List icons = n... 阅读全文
摘要:
数组:必须连续的存储空间,对于删除数据需要移动数据元素集合:对于值类型的数据拆箱时要浪费大量的计算时间,易存在数据类型安全的问题泛型:通常情况都建议使用泛型集合,这样可以获得类型安全的优点而不需要直接从基集合类型派生并实现类型的特定成员。namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } List arryList = new Li... 阅读全文