Skip to main content

Posts

Showing posts with the label Database

MySql Sample Database case study (Demo Database) for self study

Mysql database project /* *************************************************************T******** Below is the sample mysql script for self study.Try to run the script in mysql and practice the queries I will post the queries in next article. ********************************************************************* Name: MySQL Sample Database classicmodels Link: http://www.mysqltutorial.org/mysql-sample-database.aspx Version 3.1 + changed data type from DOUBLE to DECIMAL for amount columns Version 3.0 + changed DATETIME to DATE for some colunmns Version 2.0 + changed table type from MyISAM to InnoDB + added foreign keys for all tables ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=...