P16: use crashcourse; #选择数据库#使用crashcouse这个数据库,因为我没有crashcourse这个数据库,所以用我的hh数据库代替. P17: show databases; #查看可以使用的数据库# show tables; #查看刚刚使用的数据库hh里面的表有哪些# P18: show columns from customers; #查看表customers中有多少列#以及列名:数据类型,等信息... decribe customers; #是show co…
本章提到的关于==的部分,一个完整的实验如下: class Test { public static void main(String[] args) { Integer i = new Integer(47); Integer j = new Integer(47); Integer i1 = 47; Integer j1 = 47; int i2 = new Integer(47); int j2 = new Integer(47); int i3 = 47; int j3 = 47; Sy…