資料庫 HIVE SQL 增刪改查方法

2021-08-24 20:30:16 字數 1281 閱讀 4651

目錄

1:展示乙個表的分割槽

2: 檢視乙個job的原**

3:修改乙個表中某個欄位的描述

4:刪除分割槽

5:修改表名

6:新增一列

7:修改列的屬性

8:新增分割槽

9:刪除表

10:根據乙個已存在的表,新建乙個結構一樣的表

show partitions dw_htlbizdb.userlibrary_new
結果:

其中:d為分割槽,id為你要檢視的job的id

select * from ods_zeus.ods_zeus_job

where d = '2017-09-28'

and id = 16476

結果:job的**在script中

alter table a change column rpt_tag rpt_tag int comment '1新客,2新轉老,3新註冊,5老客';
use datebase;

alter table aa drop partition (d='$');

use datebase;

alter table aa rename to bb

use datebase;

alter table aa add columns (price_deduc string comment '頁面**');

use datebase;

alter table aa change column ordpersons ordpersons int;

use datebase;

alter table aa add partition(d=『2016-10-10』);

use datebase;

drop table aa;

use datebase;

create table aa

like bb;

資料庫增刪改查

我們知道當我們的表建立後重複執行會出錯,一般我們會這麼處理 create table if not exists stuinfo 學了新建表我們還應該知道乙個東西,如何刪除表 deop table table name 怎麼檢視別人的見表語句呢 show create table stuinfo 怎...

資料庫增刪改查

import pymysql def getmysqlconn conn pymysql.connect host 172.16.238.130 port 3306,db my mysql user root password 123456 charset utf8 return conn def ...

資料庫增刪改查

資料庫操作 show databases create database 資料庫名 use 資料庫名 select database drop database 資料庫名 資料表操作 create table 表名 欄位名 型別名 約束 show tables drop table 表名 資料表增刪...