Skip to content

Instantly share code, notes, and snippets.

@MarkyC
Last active December 11, 2015 00:19
Show Gist options
  • Select an option

  • Save MarkyC/4515717 to your computer and use it in GitHub Desktop.

Select an option

Save MarkyC/4515717 to your computer and use it in GitHub Desktop.
MySQL Error
INSERT INTO 'members1'(
email, # varchar(80)
password, # varchar(64)
first_name, # varchar(24)
last_name, # varchar(24)
birthday, # date
school, # varchar(32)
school_program, # varchar(32)
start_year, # date
signup_date # datetime
) VALUES (
'me@gmail.com',
'8d8222ba8936fc5b1054bf5e516c9515fb27599922588c523438419bf2549008',
'Marky',
'C',
'1991-05-18',
'York U',
'Cognitive Science',
'2009-09-01',
NOW() )
/* As 1 line */
INSERT INTO 'members1' (email,password,first_name,last_name,birthday,school,school_program,start_year,signup_date) VALUES ('me@gmail.com','8d8222ba8936fc5b1054bf5e516c9515fb27599922588c523438419bf2549008','Marky','C','1991-05-18','York U','Cognitive Science','2009-09-01',NOW())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment