Well I have a tutorial with a bunch of files that look a little like php scripts for entering data into a database in php/mysql.
Here's one of the files:
(create_president.sql)
Create president table for US Historical League
DROP TABLE IF EXISTS president;
CREATE TABLE president
(
last_name VARCHAR(15) NOT NULL,
first_name VARCHAR(15) NOT NULL,
suffix VARCHAR(5) NULL, / name suffix (Jr., II, etc.) /
city VARCHAR(20) NOT NULL,
state VARCHAR(2) NOT NULL,
birth DATE NOT NULL,
death DATE NULL
);