--建表set ansi_nulls on
goset quoted_identifier on
goif not exists (select * from sys.objects where object_id = object_id(n'[dbo].[table_1]') and type in (n'u'))
begin
create table [dbo].[table_1](
[id] [int] identity(1,1) not null,
[username] [nvarchar](50) null,
constraint [pk_table_1] primary key clustered
( [id] asc
)with (ignore_dup_key = off) on [primary]
) on [primary]
endgo
--插入測試資料
insert into [table_1]([username])values('asd_1');
insert into [table_1]([username])values('asd_2');
insert into [table_1]([username])values('asd_3');
insert into [table_1]([username])values('a阿斯頓sd_4');
insert into [table_1]([username])values('asd_5');
insert into [table_1]([username])values('6');
insert into [table_1]([username])values('as阿斯頓飛d_7');
insert into [table_1]([username])values('asd_8');
--檢視資料
select * from table_1
--更新每次修改的資料
update table_1 set username='asd_1' where id=1;
update table_1 set username='asd_2' where id=2;
update table_1 set username='asd_3' where id=3;
update table_1 set username='a阿斯頓sd_4' where id=4;
update table_1 set username='asd_5' where id=5;
update table_1 set username='6' where id=6;
update table_1 set username='as阿斯頓飛d_7' where id=7;
update table_1 set username='asd_8' where id=8;
--採用stuff刪除記錄的字首
update table_1 set username=stuff(username,1,charindex('_',username),'')
--採用substring刪除記錄的字首
update table_1 set username=substring(username,charindex('_',username)+1,len(username));
--採用replace刪除記錄的字首
update table_1 set username=replace(username,substring(username,1,charindex('_',username)),'');
OBIEE OBIEE重灌刪除DEV字首
1 安裝過一次obiee後資料庫中會存在第一次安裝的使用者,於是刪除所有使用者 select drop use username cascade from all users where username like dev 2 存在相同名稱的表空間,刪除這些表空間及資料檔案 select alter...
刪除重複的記錄
因是手動錄入資料,所以經常會產生重複的資料,這時就需要刪除多餘的資料。建立測試用表 可以看到 allen 和 smith 這兩個人的資料重複了,現在要求表中name重複的資料只保留一行,其他的刪除。刪除資料有好幾種方法,下面介紹三種方法。方法一 通過name相同,id不同的方式來判斷。sql 如下 ...
行車記錄儀的記錄怎麼刪除?刪除記錄後還能恢復嗎?
行車記錄儀的記錄怎麼刪除?行車記錄儀如今是每個車主的必備工具,它能記錄車輛行駛途中的影像以及聲音,可為交通事故提供證據,碰到專業碰瓷和攔路搶劫的的情況,行車記錄儀可以提供破案的決定性證據 如事故發生現場和案犯的體貌特徵等。還有一般行車記錄儀的記憶體都有限,那麼如何定期清理行車記錄儀的內容呢?刪除行車...