1. Download & extract it to your directory, e.g. C:\data\db. When you unpack the archive, it creates a directory named sakila-db that contains sakila-schema.sql, sakila-data.sql, sakila.mwb & SampleSakila.png files.
$ cd C:\Program Files\MySQL\MySQL Server 5.7\bin
$ mysql.exe --user=your.user.name --password=your.pass3. Execute the sakila-schema.sql script to create the database structure by using the following command:
mysql> SOURCE C:/data/db/sakila-db/sakila-schema.sql;4. Execute the sakila-data.sql script to populate the database structure with the following command:
mysql> SOURCE C:/data/db/sakila-db/sakila-data.sql; mysql> show databases; mysql> use sakila; mysql> show tables; mysql> select * from actorMore information click here.
Lintang Wisesa 💌 lintangwisesa@ymail.com
Facebook | Twitter | Google+ | Youtube | :octocat: GitHub | Hackster

