A little tutorial for me please? Rep+
#1

Can someone explain me how to make a basic .sql database ?
I would like to explain me more about this:
  • int(11)
  • varchar(255)
  • timestamp
  • int(12)
  • PRIMARY KEY
  • ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=173 ;
  • NOT NULL AUTO_INCREMEN
  • NOT NULL DEFAULT CURRENT_TIMESTAMP
PHP код:
CREATE TABLE IF NOT EXISTS `adminlog` (
  `
entryIDint(11NOT NULL AUTO_INCREMENT,
  `
valuevarchar(255NOT NULL,
  `
entryTimetimestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `
tickcountint(12NOT NULL DEFAULT '0',
  
PRIMARY KEY (`entryID`)
ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=173 
Reply


Messages In This Thread
A little tutorial for me please? Rep+ - by radiobizza - 01.04.2016, 20:02
Re: A little tutorial for me please? Rep+ - by Vince - 01.04.2016, 20:54

Forum Jump:


Users browsing this thread: 1 Guest(s)