Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 22 Server version: 8.4.7 MySQL Community Server - GPL Copyright (c) 2000, 2025, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle...
More
Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 22 Server version: 8.4.7 MySQL Community Server - GPL Copyright (c) 2000, 2025, 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> create database ventas; Query OK, 1 row affected (0.02 sec) mysql> use ventas; Database changed mysql> create table clientes( -> id_cliente int(10) not null primary key auto_increment, -> primer_nombre text(50), -> segundo_nombre text(50), -> apellido_paterno text(50), -> apellido_materno text(50), -> cedula text(10), -> genero text(25), -> telefono text(25) -> ); Query OK, 0 rows affected, 1 warning (0.03 sec) mysql> describe clientes; +------------------+----------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----
Less