第四章 DDL 資料定義

2022-09-19 19:27:08 字數 875 閱讀 8378

--1. 修改表名

alter table person rename to personnew;

--2. 修改欄位名稱、型別、注釋、順序

alter table table_name change [column] col_old_name col_new_name

column_type [comment col_comment] [first|after column_name]

alter table home.texttab change a1 column_3 string comment '666';

--注意 一般不會 修改字段順序

--2. 增加字段

alter table table_name add|replace columns (col_name data_type [comment

col_comment], ...)

-- 最後字段新增

alter table home.texttab add columns (column_4 string,column_5 int);

--3. 替換字段

--建表語句,如果已經建過表了則可以忽略該語句

create table table_name (

column_1 string,

column_2 int);

--刪除column_2

alter table home.texttab replace columns(

id string); --column_2不寫,即刪除column_2,保留olumn_1

第四章 過濾資料

本章介紹使用select語句的where子句指定搜尋條件。1.where子句 select prod id,prod name,prod price from products order by prod price desc,prod name 注意 在postgresql中,需明確告知3.49是...

第四章資料儲存

android中的資料傳輸方式有五種,分別是檔案儲存,sharedpreferences,sqlite資料庫,contentprovider以及網路儲存。sharedpreferences是android平台上乙個輕量級的儲存類,用於儲存一些應用程式的配置引數。如使用者名稱密碼等。儲存資料 shar...

第四章 繼承

一 為什麼要繼承 在物件導向中我們將具有很多重複內容的類中的內容提取出來,寫成乙個單獨的類 其他類只需要繼承就能取得這些功能,同時可以在自己類中寫入獨特的自定義方法 二 繼承語法 inte ce circle nsobject 繼承是在介面中定義的 冒號後的類名是要整合的類,nsobject 是co...