数据表基本操作

    1. create database test_db;#创建数据库
    2. use test_db;#选择数据库
    3. create table tb_emp1;
    4. (
    5. id int(11),
    6. name varchar(25),
    7. deptID int(11),
    8. salary float
    9. );#创建数据表
    10. show tables;#查看数据库下已创建好的数据表