Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. CREATE TABLE counter (
  2. id int(5) DEFAULT '0' NOT NULL auto_increment,
  3. FileName varchar(50) NOT NULL,
  4. FileURL varchar(255) NOT NULL,
  5. Count int(5) NOT NULL,
  6. PRIMARY KEY (id)
  7. );
  8.  
  9.  
  10.  
  11. #1067 - Invalid default value for 'id'
Add Comment
Please, Sign In to add comment