###
select :
1,select * from article;
2,select * from article where id= pid;
3,
###
insert:(是做了很大部分的改变;)
1,insert into article values ();
###
update;(更新)(只是做一些小部分的改变;)
1,update article set isleaf = 1 where id =pid;
###
delete:
delete from article where id = id;
###
drop:
1,drop datebase bbs;
2,drop table artile;
NopointerException 是空指针异常:就是有一个引用类型的变量没有被初始化,你就使用它了,这时就会出现空指针异常;