一、新建产品库mydb6_product。
二、新建3张表(employees,orders,invoices)。
1、employees表。
命令:
mysql> create table employees(id int primary key, name varchar(50) not null, age int, gender
-> varchar(10) not null default 'unknown', salary float);
2、orders表。
命令:
mysql> create table orders( id int primary key, name varchar(100) not null, price float, quantity int, category varchar(50));
3、invoices表。
命令:
mysql> create table invoices(number int not null primary key auto_increment, order_id int, foreign key (order_id) references orders(id), in_date date, total_amount float, check(total_amount>0));