mysql刪除欄位的方法總結

來源:互聯網
上載者:User

判斷欄位是否存在的方法總結如下:

1.尋找系統資料表

select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME from information_schema.COLUMNS where COLUMN_NAME='uu';

2.使用describe

describe cdb_posts first

存在第一列返回欄位的名稱,不存在就返回null,

刪除方法:

如果刪除的時候涉及的表不多的話,直接:

alter table tb_name drop column col_name;

多的話,可以使用下面的方法:

預存程序刪除

DELIMITER $$

DROP PROCEDURE IF EXISTS `test`.`p_drop_uuid_uuname`$$

CREATE DEFINER=`root`@`%` PROCEDURE `p_drop_uu`()
BEGIN
declare _db_name char(30);
declare _tb_name char(30);
declare _col_name char(30);
declare no_more_row tinyint(1);

declare cur_uuid cursor for
select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME
from information_schema.COLUMNS
where COLUMN_NAME='uu';
declare continue handler for not found set no_more_row=1;
set no_more_row=0; -- 判斷是否結束的標誌位
open cur_uuid;
repeat
fetch cur_uuid into _db_name,_tb_name,_col_name;-- 取記錄
-- select _db_name,_tb_name,_col_name;
set @_dt = concat("alter table ", _db_name,".", _tb_name, " drop column uu");
-- 在預存程序中,想把一個變數當作SQL執行,只有用prepare;
prepare s1 from @_dt;
execute s1;
deallocate prepare s1;
until no_more_row
end repeat;
close cur_uuid;
END$$

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.