Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含大量列(~500)的excel表和一个列数相似的数据库表。我可以在数据库上运行 SQL 查询。我想要实现的是找到我的数据库表中但不在电子表格中的列。手动检查似乎效率很低。
您可以尝试下一个半手动方法:
select top 1 * from [your table]
您是否考虑过在 excel 中使用 ODBC 功能?您应该能够在 excel 中打开表格,然后使用计数公式来确保数字匹配。