mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-14 12:52:17 +00:00
Added sync examples
This commit is contained in:
35
examples/db_setup.sql
Normal file
35
examples/db_setup.sql
Normal file
@@ -0,0 +1,35 @@
|
||||
-- Connection system variables
|
||||
SET NAMES utf8;
|
||||
|
||||
-- Database
|
||||
DROP DATABASE IF EXISTS mysql_asio_examples;
|
||||
CREATE DATABASE mysql_asio_examples;
|
||||
USE mysql_asio_examples;
|
||||
|
||||
-- Tables
|
||||
CREATE TABLE company(
|
||||
id CHAR(10) NOT NULL PRIMARY KEY,
|
||||
name VARCHAR(100) NOT NULL
|
||||
);
|
||||
CREATE TABLE employee(
|
||||
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
first_name VARCHAR(100) NOT NULL,
|
||||
last_name VARCHAR(100) NOT NULL,
|
||||
salary DOUBLE,
|
||||
company_id CHAR(10) NOT NULL,
|
||||
FOREIGN KEY (company_id) REFERENCES company(id)
|
||||
);
|
||||
|
||||
INSERT INTO company (name, id) VALUES
|
||||
("Award Winning Company, Inc.", "AWC"),
|
||||
("Sector Global Leader Plc", "SGL"),
|
||||
("High Growth Startup, Ltd", "HGS")
|
||||
;
|
||||
INSERT INTO employee (first_name, last_name, salary, company_id) VALUES
|
||||
("Efficient", "Developer", 30000, "AWC"),
|
||||
("Lazy", "Manager", 80000, "AWC"),
|
||||
("Good", "Team Player", 35000, "HGS"),
|
||||
("Enormous", "Slacker", 45000, "SGL"),
|
||||
("Coffee", "Drinker", 30000, "HGS"),
|
||||
("Underpaid", "Intern", 15000, "AWC")
|
||||
;
|
||||
Reference in New Issue
Block a user