Help for this page

Select Code to Download


  1. or download this
    mysql -u [username] -e "use [database name];CREATE TABLE games (file v
    +archar(30) primary key, name text, description text, counter int)"
    
  2. or download this
    mysql -u [username] -e"use [database name];LOAD DATA INFILE '../data/g
    +ames/descriptions.txt' REPLACE INTO TABLE games FIELDS TERMINATED BY 
    +'\t' LINES TERMINATED BY '\n' (file, name, description, counter)"