如何从包含 ID 列的表中选择不同的结果?
例如:(这是错误查询)
SELECT ID,City,Street from (SELECT distinct City, Street from Location)
表位置
CREATE TABLE Location(
ID int identity not null,
City varchar(max) not null,
Street varchar(max) not null
)
然后它将显示列 ID、不同列 City、不同列 Street
是否有可能获得此结果的查询?