当前位置:Gxlcms > 数据库问题 > sql语句对表字段进行修改

sql语句对表字段进行修改

时间:2021-07-01 10:21:17 帮助过:27人阅读

不同数据库修改语句命令如下:

1. MYSQL

rename table table1 to table2;

2. SQL SERVER

EXEC sp_rename ‘table1‘, ‘table2‘;

3. Oracle

alter table table1 rename to table2

4. db2

rename table table1 to table2;

5 informax

rename table(表名) table1(字段1) to table2(字段2)

sql语句对表字段进行修改

标签:alter   表名   serve   数据库修改   nbsp   tps   .com   name   target   

人气教程排行