1、假设习惯使用MySQL
2、假设MySQL使用还算溜
二、SQL1、建表
create table table_a(
id varchar2(32) primary key,
user_id varchar2(32),
user_name varchar2(20),
amount NUMBER(12,2),
state char(1) default '0',
create_by varchar2(50),
create_time date,
update_by varchar2(50),
update_time date,
del_flag char(1) default '0'
);
2、增加备注-表
comment on table table_a is '测试建表';
3、增加备注-字段
comment on column table_a.id is '主键';