select 字段1,字段2,字段3 into tempname form table where table.id=1;
这个会给tempname 表中自动生成 字段1,字段2,字段3 三个字段以及值。
修改表字段值,根据nid
update tablename set 字段1=tb.ssm from ( select 字段 as ssm from table2 ) tb
where tbalename.nid=tb.nid
给表添加字段
alter table 表1_20150513
add 字段1 int
alter table 表1_20150513
add 字段2 decimal(18,2)
alter table 表1_20150513
add 字段3 decimal(18,2)
alter table 表1_20150513
add 字段4 decimal(18,2)
alter table 表1_20150513
add 字段5 varchar(50)
时间: 2024-10-08 20:31:13