Google News
logo
MySQL - Interview Questions
How do you create a table using MySQL?
Use the following to create a table using MySQL :
CREATE TABLE history (
author VARCHAR(128),
title VARCHAR(128),
type VARCHAR(16),
year CHAR(4)) ENGINE InnoDB;
Advertisement