zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

sql语句对表字段进行修改详解数据库

数据库SQL 详解 修改 进行 语句 表字
2023-06-13 09:20:14 时间

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

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)

5749.html

mysqloracle