将 excel sheet 中的 10000 条记录粘贴到临时 table
Paste 10000 records from excel sheet into a temp table
我在 excel sheet 中有 10000 条记录,想在将其插入实际 table 之前将其复制到临时文件 table。我没有在数据库上创建实际 table 的权限。有没有一种方法可以将 10000 条记录粘贴到临时 table 中,类似于 sql 服务器数据库中的 "Edit top 200 rows" 函数?
Insert Into #Temp
Select *
From MySpreadsheet
任何 table 名称前加一个井号(或主题标签,对于你们年轻的 whippersnappers)都是临时 table。不过,从技术上讲,您需要为每个字段命名,而不是使用星号(“*”)。所以更像是:
Insert Into #MyTempTable(Field1, Field2)
Select Field1, Field2
From MySpreadsheet
我在 excel sheet 中有 10000 条记录,想在将其插入实际 table 之前将其复制到临时文件 table。我没有在数据库上创建实际 table 的权限。有没有一种方法可以将 10000 条记录粘贴到临时 table 中,类似于 sql 服务器数据库中的 "Edit top 200 rows" 函数?
Insert Into #Temp
Select *
From MySpreadsheet
任何 table 名称前加一个井号(或主题标签,对于你们年轻的 whippersnappers)都是临时 table。不过,从技术上讲,您需要为每个字段命名,而不是使用星号(“*”)。所以更像是:
Insert Into #MyTempTable(Field1, Field2)
Select Field1, Field2
From MySpreadsheet