MySQL Forums
Forum List  »  MySQL for Excel

Re: MySQL for Excel
Posted by: Marion Gordon
Date: August 25, 2014 10:18PM

Hay use the following code for creating table in MySQL database. It is possible to create a table at easy.

CREATE TABLE IF NOT EXISTS `tutorial` (

`id` int(11) NOT NULL auto_increment,
`title` varchar(255) NOT NULL,
`author` varchar(255) NOT NULL,
`price` float(4,2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

Options: ReplyQuote


Subject
Views
Written By
Posted
2523
June 05, 2014 08:14AM
1776
June 09, 2014 10:38AM
Re: MySQL for Excel
1460
August 25, 2014 10:18PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.