P16:
use crashcourse; #选择数据库#使用crashcouse这个数据库,因为我没有crashcourse这个数据库,所以用我的hh数据库代替。
P17:
show databases; #查看可以使用的数据库#
show tables; #查看刚刚使用的数据库hh里面的表有哪些#
P18:
show columns from customers; #查看表customers中有多少列#以及列名;数据类型,等信息...
decribe customers; #是show columns from customers的快捷方式#
help show; #显示所有可以show的语句#