Cómo crear una tabla usando sentencias SQL en la interfaz Navicat para MySQL
Seleccione una base de datos, haga clic en Tease Query, haga clic en Tease Create Query a la derecha, ingrese la declaración SQL, haga clic en Tease Execute y listo. Ejemplo de SQL:
CREAR TABLA `test`.`users ` (.
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
`age` int(10 ) DEFAULT NULL,
CLAVE PRIMARIA (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;.