January 2018
Intermediate to advanced
446 pages
12h 57m
English
Create dummy tables and sample data to understand this recipe:
mysql> CREATE DATABASE bank;mysql> USE bank;mysql> CREATE TABLE account(account_number varchar(10) PRIMARY KEY, balance int);mysql> INSERT INTO account VALUES('A',600),('B',400);
Read now
Unlock full access