Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 12, 2019 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c9f634ababf8d5195f8cb7a04fec9b56 to your computer and use it in GitHub Desktop.
Save parzibyte/c9f634ababf8d5195f8cb7a04fec9b56 to your computer and use it in GitHub Desktop.
MariaDB [ventas]> describe ventas;
+------------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+---------------------+------+-----+---------+----------------+
| id | bigint(20) unsigned | NO | PRI | NULL | auto_increment |
| idPaciente | int(11) | NO | MUL | NULL | |
| fecha | datetime | NO | | NULL | |
| total | decimal(7,2) | YES | | NULL | |
| vista | tinyint(1) | NO | | 0 | |
| idUsuario | bigint(20) unsigned | NO | | NULL | |
| estado | int(11) | NO | | 0 | |
| idMedico | int(200) | NO | MUL | 1 | |
+------------+---------------------+------+-----+---------+----------------+
8 rows in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment