Financial Database Table Creation Tutorial

This is the SQL command set that can be uploaded to the database and automatically create and fill the tables. Download the file from from HERE. To view the SQL and copy/paste it, you can see that below. [code lang="SQL"] CREATE TABLE masterlogin ( ml_id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, username varchar(120) NOT NULL, password VARCHAR(30) NOT NULL ) TYPE = MYISAM; INSERT INTO masterlogin (ml_id, username, password) VALUES...

Read More

Pin It on Pinterest