mysql表中某一列修改為自動增長的方法

2021-09-27 03:34:42 字數 3586 閱讀 1157

如果表中沒有資料可以使用 drop column然後再add column,如果存在一部分資料可以使用本文提供的第二種解決方法

昨天有位學生問我「乙個表已經建好了,能不能將裡面的乙個字段改為自動增長?」,「能,但沒有必要去修改它,

應該在建表的時候就設計好」 我說。 這時候他和另一位學生

討論起來。他覺得可以,另一位試過說不行。因為他們不是我帶班級的學生,他們也諮詢了自己的老師,所以我沒有再發表意見。

需求:如何將一張表中個某一列修改為自動增長的。

解答:1) 情景一:表中沒有資料, 可以使用 drop column然後再add column

alter table 表名 drop column 列名

alter table表名 add列名 int identity(1,1)

2) 情景二:表中已經存在一部分資料

/**************** 準備環境********************/

--判斷是否存在test表

if object_id(n'test',n'u')isnotnull

droptabletest

--建立test表

createtabletest

(

idintnotnull,

namevarchar(20)notnull

)

--插入臨時資料

insertintotestvalues(1,'成龍')

總結:在表設計介面修改最為簡單。如果該列已有的資料中存,修改可能會引發異常,可以使用資料匯入匯出的方式解決。

總之,不管使用何種方式,都需求提前對資料做好備份。

insertintotestvalues(3,'章子怡')

insertintotestvalues(4,'劉若英')

insertintotestvalues(8,'王菲')

select*fromtest

/**************** 實現更改自動增長列********************/

begintransaction

createtabletest_tmp

(

idintnotnullidentity(1,1),

namevarchar(20)notnull

)

go

setidentity_insert test_tmpon

go

if exists(select*fromtest)

exec(' insert into test_tmp(id, name ) select id, name from test with(holdlock tablockx)')

go

setidentity_insert test_tmpoff

go

droptabletest

go

execsp_rename n'test_tmp',n'test','object'

go

commit

go

/****************驗證結果*****************/

insertintotestvalues('張曼')

select*fromtest

MySQL 某一列累加

形如這樣的 利用變數 sumsalary sumsalary salary,進行累加,但是別忘記初始化變數 select sumsalary 0 來個例項,某客網的mysql題目 60 按照salary的累計和running total,其中running total為前n個當前 to date 9...

mysql將一列資料累加 MySql某一列累計查詢

問題 有一列資料,需要累計顯示出來 比如 id salary 查詢結果 id salary sumsalary 1 10000 1 10000 10000 2 20000 2 20000 30000 3 30000 3 30000 60000 解決方案 1 使用自定義變數 用 set 定義變數 my...

python統計excel 表中某一列文字的詞頻

jieba庫的使用以及csv庫的使用 import jieba import csv txt open complaint.csv rt encoding utf 8 read 讀取所需要分析的檔案內容 excel open baogao.csv w newline 開啟 檔案,若 檔案不存在則建立...