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.
我将匹配数字以链接表格。
问题是一个可能是 1234567,另一个是 1234.567
有什么办法可以消除。所以我可以将表格链接在一起并提取数据?
我正在使用 SQL Server 2008。
您应该能够像这样连接公共列上的 2 个表:
select a.cola, b.colb from tablea a inner join tableb b on replace(b.commonfield,'.','')=replace(a.commonfield,'.','')
这将确保如果任一列具有.,则将其删除并仅与数字匹配。
.