摘要:
方法1: '参数: strMethod =(Post,Get) strUrl=(网址) strJson=(普通字符串或json字符串) Public Function PostData(ByVal strMethod As String, ByVal StrUrl As String, Option 阅读全文
摘要:
从A表复制数据到B表(B表不存在,可用于表的备份) select * into B from A --该操作将自动创建B表,包括B表的数据结构,但是并不包含A表的约束 从A表复制数据追加到B表(B表存在) inset into B select 列1,列2,列3... from A 复制表的结构 s 阅读全文