Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 8.3.0 MySQL Community Server - GPL Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or...
More
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 8.3.0 MySQL Community Server - GPL Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | calificaciones | | information_schema | | mysql | | performance_schema | | sys | | venta | +--------------------+ 6 rows in set (0.01 sec) mysql> create database Hotel; Query OK, 1 row affected (0.01 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | calificaciones | | hotel | | information_schema | | mysql | | performance_schema | | sys | | venta | +--------------------+ 7 rows in set (0.00 sec) mysql> use hotel; Database changed mysql> create table cliente(id_cl
Less