Salve a tutti! avrei necessità di eseguire un file .sql in modo da creare una tabella.. ecco il codice:
Codice:
#Questo è il file .sql che dovrebbe essere eseguito da un client sql:
#
# Host: localhost Database : my_fimosi
# --------------------------------------------------------
#
# Table structure for table 'faq_data'
#
CREATE TABLE faq_data (
faq_id tinyint(3) unsigned DEFAULT '0' NOT NULL auto_increment,
visible enum('1','0') DEFAULT '1' NOT NULL,
v_order tinyint(3) unsigned DEFAULT '0' NOT NULL,
question varchar(128) NOT NULL,
answer tinytext NOT NULL,
date date DEFAULT '0000-00-00' NOT NULL,
PRIMARY KEY (faq_id)
);
Ora, come faccio?