I'm following a tutorial that requires me to create a database, normally i would have created this through phpmyadmin but i obviously can't do this. The following is the script required, i've tried the create line on my command line but it doesn't seem to work. Where do i run the database script? I'm using npm, and using my windows command line
create database test;
use test;
CREATE TABLE users (
id int(11) NOT NULL auto_increment,
name varchar(100) NOT NULL,
age int(3) NOT NULL,
email varchar(100) NOT NULL,
PRIMARY KEY (id)
);