MariaDB [(none)]> create database club_deportivo_corporacion_aws; Query OK, 1 row affected (0.003 sec) MariaDB [(none)]> use club_deprotivo_corporacion_aws; ERROR 1049 (42000): Unknown database 'club_deprotivo_corporacion_aws' MariaDB [(none)]> use club_deportivo_corporacion_aws; Database changed MariaDB [club_deportivo_corporacion_aws]> create table jugadores -> (id_jugador int (15) primary key not null, -> nombre varchar (60) not null, -> apellido varchar 100 not null, -> fecha_nacimiento date not null, -> edad int (3) not null, -> posicion varchar (20) not null, -> categoria int (15) not null, -> telefono_contacto varchar (15) not null, -> email_contacto varchar (60) not null); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '100 not null, fecha_nacimiento date not null, edad int (3) not null, posicion...' at line 4 MariaDB [club_deportivo_corporacion_aws]> create table jugadores -> (id_jugador int (15) primary key not null, -> nombre varchar (60) not null, -> apellido varchar (100) not null, -> fecha_nacimiento date not null, -> edad int (3) not null, -> posicion varchar (20) not null, -> categoria int (15) not null, -> telefono_contacto varchar (15) not null, -> email_contacto varchar (60) not null); Query OK, 0 rows affected (0.010 sec) MariaDB [club_deportivo_corporacion_aws]> create table entrenadores -> (id_entrenador int (20) primary key not null, -> nombre varchar (50) not null, -> apellido varchar (50) not null, -> telefono int (15) not null, -> email varchar (60) not null, -> experiencia int (3) not null, -> certificacion varchar (100) not null); Query OK, 0 rows affected (0.013 sec) MariaDB [club_deportivo_corporacion_aws]> create table categorias -> (id_categoria int (20) primary key not null, -> nombre_categoria varchar (50) not null, -> edad_min int (3) not null, -> edad_max int (3) not null); Query OK, 0 rows affected (0.011 sec) MariaDB [club_deportivo_corporacion_aws]> create table equipos -> (id_equipo int (15) primary key not null, -> nombre_equipo varchar (60) not null, -> id_categoria int (15) foreign key not null); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'foreign key not null)' at line 4 MariaDB [club_deportivo_corporacion_aws]> create table equipos -> (id_equipo int (15) primary key not null, -> nombre_equipo varchar (60) not null, -> id_categoria int (15) not null, -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 4 MariaDB [club_deportivo_corporacion_aws]> create table equipos -> (id_equipo int (15) primary key not null, -> nombre_equipo varchar(60) not null, -> id_categoria1 int (15) not null, -> foreign key(id_categoria1) references categorias(id_Categoria) on delete cascade on update cascade); Query OK, 0 rows affected (0.050 sec) MariaDB [club_deportivo_corporacion_aws]> mysqldump -B -uroot -p club_deportivo_corporacion_aws.sql -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'mysqldump -B -uroot -p club_deportivo_corporacion_aws.sql' at line 1 MariaDB [club_deportivo_corporacion_aws]> mysqldump -B -uroot -p club_deportivo_corporacion_aws>c:/xampp/club_deportivo_corporacion_aws.sql -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'mysqldump -B -uroot -p club_deportivo_corporacion_aws>c:/xampp/club_deportivo...' at line 1 MariaDB [club_deportivo_corporacion_aws]> exit