SQL Life

Oceanbase数据库基本操作Sql语句

时间:2021/5/14 9:42:21  作者:枫叶  来源:solgle.com  查看:3160  评论:1
内容摘要:创建数据库:*每个租户创建后,默认都有一个root用户* create database priamry_zone='zone1,zone2,zone3';创建表*>create table primary_zone='zone1,z...
创建数据库:
*每个租户创建后,默认都有一个root用户
* create database <db_name> priamry_zone='zone1,zone2,zone3';
 
 
创建表
*>create table <table_name> primary_zone='zone1,zone2,zone3';
*>create table <table_name> primary_zone='zone1,zone2;zone3';
 
查看表以及分区的相关信息
系统表:__all_virtual_meta_table
系统表:__all_virtual_table
 
创建数据库:
create database [if not exists] dbname
查看数据库
show databases;
删除数据库
drop database my_db;
 
创建新表
create table test (c1 int primary key,c2 varchar(50));
查看建表语句
show create table test;
删除表语句
drop table [if exists] table_list;
drop table tblname1,tablname2;
使用showtables查看库中所有表
show tables from my_db;
 
 
创建索引
create [unique] index indexname on tblname(colname);
查看索引
show index from tblname;
删除索引
drop index indexname on tblname;

 
标签:Oceanbase基础sql 
相关文章
    相关评论
     img1 img2 img3 img4 img5 img6 img7 img8 img9 img10
    评论者:      验证码:  点击获取验证码
       Copyright © 2013-2028 solgle.com,All rights reserved.[solgle.com] 公安机关备案号:51010802000219
    Email:solgle@solgle.com; weixin:cd1008610000 ICP:蜀ICP备14011070号-1