Mysql批量修改表欄位名稱為小寫

2022-07-27 13:15:18 字數 629 閱讀 6615

mysql批量修改表欄位名稱為小寫

有時候表字段windows下不區分大小寫,linux區分 。為了避免不必要的麻煩我們統一改為小寫。。

匯出sql

例如:

-- ----------------------------

-- table structure for t_user_role

-- ----------------------------

drop table if exists `t_user_role`;

create table `t_user_role` (

`user_id` bigint(20) not null comment '使用者id',

`role_id` bigint(20) not null comment '角色id'

) engine = innodb character set = utf8 collate = utf8_general_ci row_format = dynamic;

要在vim中執行此操作,請開啟檔案,然後輸入以下命令:

:%s/`\(\w\+\)`/\l&/g
儲存即可

查詢oracle表字段名稱

select column name,data type,data length from all tab columns where table name t cakey select from user tables 查詢當前使用者所擁有的表 select from dba tables 擁有d...

oracle 修改 欄位名稱

暫時應該沒有對應的方法,所以我用自己想好的方法去修改 修改原欄位名 name 為name tmp,是將想改名稱的字段改為沒用 臨時的字段 alter table 表名 rename column 老欄位 to 新字段 增加乙個和原欄位名同名的字段 name alter table 表名 add 老欄...

ArcGIS批量修改欄位名稱或型別

arcpy就和arcobjects,強大得令人髮指,呵呵,開個玩笑!在實際工作中會碰到這樣的需求,shape file or geodatabase的feature class的欄位名和字段型別不是我們想要的,可是通過arcgis的軟體或者資料庫本身都沒法去修改它。怎麼辦,arcpy可以顯身手了。i...