07 2014 档案
Sql语句复习
摘要:1.两张表A,B其中A表中字段1,字段2,字段3要迁移到B表中字段4,字段5,字段6,迁移后B表的字段7 全赋值为123:insert into B(字段4,字段5,字段6,字段7) select 字段1,字段2,字段3, '123' as 字段8 from A 阅读全文
posted @ 2014-07-10 19:39 二豆 阅读(186) 评论(0) 推荐(0)
冒泡排序
摘要:public class BubbleSort : SortBase { public BubbleSort(int num, int[] arr): base(num,arr) { } public override int[] Sort() { int ... 阅读全文
posted @ 2014-07-08 15:18 二豆 阅读(263) 评论(0) 推荐(0)