按某個字段隨機選擇唯一一條記錄

2021-05-17 19:56:56 字數 529 閱讀 8872

create table #temptable

(mobile varchar(20),

memo varchar(30)

)insert into #temptable

select '18966668888','春哥1'

insert into #temptable

select '18966668888','春哥2'

insert into #temptable

select '15855558888','曾哥1'

insert into #temptable

select '15855558888','曾哥2'

;with tempas(

select *,row_number() over(partition by mobile order by newid()) row

from #temptable

)select  * from temp where row=1

drop table #temptable

按某個字段隨機選擇唯一一條記錄

create table temptable mobile varchar 20 memo varchar 30 insert into temptable select 18966668888 春哥1 insert into temptable select 18966668888 春哥2 ins...

oracle拆分某個字段

表 uf wzlb 物資類別 表 uf wzzl 物資種類 表 uf wzlb wzzl 物資類別和物資種類關聯表,物資類別與物資種類為一對多關係 如,物資類別編碼為 wzlb 201805100004 該物資類別繫結了多個物資種類,繫結的物資種類編碼為 wzzl 201805100044,wzzl...

mysql 替換某個欄位中的某個字元

遇到這麼個情況 比如 msql裡面的某個表的某個字段裡面儲存的是乙個人的位址,有一天這個位址的裡面的某個地 名變了,那麼他的位址也就要變 比如 原來是 csharp view plain copy number addr 01 四川省成都市 街道05號 02 四川省成都市 街道07號 03 四川省成...