SAP HANA 新建表以及運算元據(3)

2022-02-07 12:03:03 字數 1898 閱讀 4751

賬號和資料庫都建立好之後,接下來就可以建立表了。來見識一下這個所謂「列式」儲存方式的表是長啥樣的!

一、視覺化新建表

然後輸入所需欄位,設定好型別和長度:

上圖右上角可以看到型別是column store,代表列式儲存:

點選indexes的頁籤,設定索引:

further properties頁籤:

然後執行右上角的按鈕,或者按f8:

系統會提示建立ok:

如此,表就算建立完成了。當然我們也可以用sql語句來建立:      

create column table "mengxin"."book" ("id" integer cs_int not null ,

"code" varchar(10) not null ,

"name" varchar(30) not null ,

"author" varchar(30),

"price" double cs_double,

"date" date cs_daydate,

"status" boolean cs_int,

primary key inverted value ("id",

"code",

"name")) unload priority 5 auto merge

;create unique index "index_code" on "mengxin"."book" ( "code" asc )

;comment on column "mengxin"."book"."id" is '序號'

;comment on column "mengxin"."book"."code" is '書號'

;comment on column "mengxin"."book"."name" is '書名'

;comment on column "mengxin"."book"."author" is '作者'

;comment on column "mengxin"."book"."price" is '**'

;comment on column "mengxin"."book"."date" is '出版日期'

;comment on column "mengxin"."book"."status" is '是否出借'

二、插入資料:

按f8執行,資料就算插入系統中了!

三、查詢資料:

更新跟刪除的sql與sql server的**無異,不再說明!

運算元據庫 表

1 連線到mysql伺服器 mysql u使用者名稱 p2 檢視全部資料庫 show databases 3 選擇要操作的資料庫 use 資料庫名稱 4 檢視某個資料庫的所有表 show tables 運算元據庫 建立資料庫 create database 資料庫名稱 刪除資料庫 drop data...

MySQL運算元據庫表

1,建立表的時候寫注釋 create table if not exists demo dictionary id varchar 32 not null comment 主鍵id primary key,dictionary name varchar 100 not null comment 名稱...

DDL 運算元據庫 表

1 c create 建立 建立資料庫 create database 資料庫名稱 建立資料庫,判斷不存在,再建立 create database if not exists 資料庫名稱 建立資料庫,並指定字符集 create database 資料庫名稱 character set 字符集名 2 ...