SQLServer中如何获取没有重复的记录,记录中字段有text,或image数据类型
不能以DISTINCT方式选择text、ntext或image数据类型不用DISTINCT,还有什么方法?...
不能以 DISTINCT 方式选择 text、ntext 或 image 数据类型
不用DISTINCT ,还有什么方法? 展开
不用DISTINCT ,还有什么方法? 展开
2个回答
展开全部
查询并显示SignsRoadcost不重复的数据
1、表中有IDENTITY 属性字段
假设其IDENTITY 属性字段字段为id
select a.* into # from tb_Allocations a
select * from # a where id in(select min(id) as id from # b
where a. SignsRoadcost=b. SignsRoadcost)
2、表中没有IDENTITY 属性字段
select a.*,id=identity(int,1,1) into # from tb_Allocations a
select * from # a where id in(select min(id) as id from # b
where a. SignsRoadcost=b. SignsRoadcost)
1、表中有IDENTITY 属性字段
假设其IDENTITY 属性字段字段为id
select a.* into # from tb_Allocations a
select * from # a where id in(select min(id) as id from # b
where a. SignsRoadcost=b. SignsRoadcost)
2、表中没有IDENTITY 属性字段
select a.*,id=identity(int,1,1) into # from tb_Allocations a
select * from # a where id in(select min(id) as id from # b
where a. SignsRoadcost=b. SignsRoadcost)
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询