摘要: using System;using System.IO;using System.Text;using System.Net;using System.Net.Sockets;using System.Collections;using System.Collections.Specialized;using KSN.Exceptions;using KSN.Validate;namespace... 阅读全文
posted @ 2006-07-27 21:19 QDuck 阅读(984) 评论(0) 推荐(0) 编辑
摘要: 把表B中的字段,插入到表A中; INSERT INTO 表A(字段名1, 字段名2, ……) SELECT (字段名1, 字段名2, ……) FROM 表B; 把表table_b 复制一份为table_a SELECT * INTO table_a FROM table_b 记录一下,以免遗忘。 阅读全文
posted @ 2006-07-27 09:14 QDuck 阅读(2338) 评论(1) 推荐(0) 编辑