select * from books
insert into books values//数据签加
(
1,
'红楼梦',
'5556667',
'曹雪芹',
'89.00',
1910-9-9,
1989-5-9,
'满纸荒唐言,一把辛酸泪。都言作者痴,谁解其中味。
'
)
update books set bname='后三国' where id=1 //数据修改
select * from books
insert into books values//数据签加
(
1,
'红楼梦',
'5556667',
'曹雪芹',
'89.00',
1910-9-9,
1989-5-9,
'满纸荒唐言,一把辛酸泪。都言作者痴,谁解其中味。
'
)
update books set bname='后三国' where id=1 //数据修改