codecamp

OceanBase RENAME TABLE

描述

该语句用来对一个或多个表进行重命名。

格式

RENAME TABLE tblname TO newtblname 
     [, tb1name2 TO newtblname …];

参数解释

参数

描述

tblname

原表名。

newtblname

新表名。

tblname TO newtblname

[, tb1name2 TO newtblname …];

多个表重命名时,使用“,”隔开。

注意事项

  • 重命名操作自动进行,重命名正在进行时,其他线程不能读取任何表。
  • 如果此语句用于对多个表进行重命名,则重命名操作从左到右进行。
  • 当您执行 RENAME 时,您不能有被锁定的表,也不能有处于活性状态的事务。还必须拥有原表的 ALTER 和 DROP 权限,以及新表的 CREATE 和 INSERT 权限。
  • RENAME TABLE 也可以用于视图,只要确保是在同一个数据库中。

示例

  1. 创建表 t1 和 t2。
create table t1(c1 int);

create table t2(c1 int);
  1. 将表 t1 重命名为 t11。
rename table t1 to t11;
  1. 将表 t11 重命名为 t111,表 t2 重命名为 t22。
rename table t11 to t111, t2 to t22;
  1. 将表 t111 重命名为 t1111 后,再将表 t1111重命名为 t1。
rename table t111 to t1111, t1111 to t1;


OceanBase PURGE TENANT
OceanBase RENAME USER
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OceanBase 控制台指南

OceanBase ODC 使用指南

OceanBase Web 版 ODC

OceanBase 客户端版 ODC

OceanBase Connector/J 开发者指南

OceanBase 什么是OceanBase Connector/J

OceanBase SQL 参考(MySQL 模式)

OceanBase SQL 参考(Oracle 模式)

OceanBase 基本元素

OceanBase 数据库对象

OceanBase 函数

OceanBase 单行函数

OceanBase 返回数字的字符串函数

OceanBase 通用比较函数

OceanBase 编码解码函数

OceanBase SQL 调优指南

OceanBase 相关协议

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }