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.
我正在整理一个包含列(F_name、L_name、Address、City、State、Zip 和 Phone #)的表。虽然它继续从数据库中提取,但我想运行一个查询以仅提取具有不同电话#s 的记录。
如何才能做到这一点?
谢谢
丹尼斯。
伟大的!我只是想确保我理解了这个问题。要获得不同的电话号码列表,您只需运行这样的查询
select distinct phonenbr from MyTableBeingLoaded
如果您发现您的查询需要很长时间,它可能会被阻止。在这种情况下,您可以使用类似这样的东西来获得结果(注意这不应该在生产代码中使用,因为 nolock 会导致奇怪的结果。
select distinct phonenbr from MyTableBeingLoaded with(nolock)