创建表:
create table (表名) (column列名 列类型,......);例:create table l_productinfo (Productid varchar2(10),Productname varchar2(20),Productprice number(8,2),Quantity number(10),Category varchar2(10),Desperation varchar2(1000),Origin varchar2(10));
----------------------------------------------------
修改表:
alter table add 列名 列类型;alter table modify 列名 列类型;alter table drop 列名;例:alter table l_productinfo add lentim varchar2(20);alter table l_productinfo modify lentim number(3,2);alter table l_productinfo drop column lentim;
----------------------------------------------------
删除表(表内记录)
删除表drop table table_name;删除表内记录delete table_name where ... and ....;delete t_job_info where staus=0 and create_by=1;
例:
alter table tablename drop column_name; 删除表字段
alter table t_avg add (type varchar2(30) default '赋予默认值' not null) 增加表字段,赋予初始值,并不允许字段为空。
alter table TABLE_NAME rename column FIELD_NAME to NEW_FIELD_NAME; 修改字段名。
update t_avg t set t.type='水果' where t.type=0; 修改表项值
评论回复