数据库的增删改查

添加:

insert into 表名 values(); 

修改:

update 表名 set a=where b=c; 

删除:

delete from 表名where a=b;

查询:

select * from 表名 where a=b;

posted on 2008-04-26 14:28  王鹏  阅读(1740)  评论(0)    收藏  举报

导航