建立資料表例子

2021-09-01 13:03:42 字數 2956 閱讀 1093

--建立資料表

create table biz_data_chg

( serno varchar2(32 byte) not null,

mod_type varchar2(2 byte),

loan_fee_no varchar2(32 byte),

loan_no varchar2(32 byte),

nper number(1),

fee_type char(2 byte),

charge_amt_old number(16,2),

charge_amt number(16,2),

chg_desc varchar2(2000 byte),

chg_status varchar2(2 byte),

input_id varchar2(10 byte),

input_br_id varchar2(20 byte),

cus_manager varchar2(10 byte),

main_br_id varchar2(20 byte),

last_mod_user varchar2(10 byte),

last_mod_time varchar2(20 byte),

constraint biz_data_chg primary key (serno)

);comment on table biz_data_chg is '業務資料修改';

comment on column biz_data_chg.serno is '流水號';

comment on column biz_data_chg.mod_type is '修改型別';

comment on column biz_data_chg.loan_fee_no is '收費編號';

comment on column biz_data_chg.loan_no is '放款編號';

comment on column biz_data_chg.nper is '期數';

comment on column biz_data_chg.fee_type is '費用型別';

comment on column biz_data_chg.charge_amt_old is '修改前收費金額';

comment on column biz_data_chg.charge_amt is '收費金額';

comment on column biz_data_chg.chg_desc is '修改描述';

comment on column biz_data_chg.chg_status is '修改狀態';

comment on column biz_data_chg.input_id is '登陸人';

comment on column biz_data_chg.input_br_id is '登陸機構';

comment on column biz_data_chg.cus_manager is '申請人';

comment on column biz_data_chg.main_br_id is '申請機構';

comment on column biz_data_chg.last_mod_user is '最後修改人';

comment on column biz_data_chg.last_mod_time is '最後修改時間';

--刪除資料表

drop table users;

範例二:

create table 'user'(

'id' int(11) not null auto_increment comment '使用者表id',

'username' varchar(50) not null comment '使用者名稱',

'password' varchar(50) not null comment '使用者密碼',

'email' varchar(50) default null comment '郵箱',

'phone' varchar(20) default null comment '**',

'question' varchar(100) default null comment '找密碼問題',

'answer' varchar(100) default null comment '找密碼答案',

'role' int(4) not null comment '角色'

'create_time' datetime not null comment '建立時間',

'update_time' datetime not null comment '最後一次更新時間',

primary key('id'),

unique key 'user_name_unique' ('username') using btree

)engine=innodb auto_increment=21 default charset=utf8

建立資料表

語法 create table 表名 欄位名稱 字段型別 字段特徵 是否為null,預設值 標識列 主鍵 唯一鍵 外來鍵 check約束 欄位名稱 字段型別 字段特徵 是否為null,預設值 標識列 主鍵 唯一鍵 外來鍵 check約束 建立老師表teacher id name gender age...

建立資料表

class users models.model uphone models.charfield max length 20,verbose name 號碼 upwd models.charfield max length 20,verbose name 密碼 uemail models.email...

建立資料表

一 資料表 1 資料表 或表 是資料庫最重要的組成部分之一,是其他物件的基礎 2 表是乙個二維表,行稱為 記錄 列稱為 字段 二 建立資料表 1 首先開啟資料庫 資料庫要存在 show databases 檢視當前所有的資料庫 use 資料庫名稱 開啟指定資料庫 select databases 顯...