Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 12, 2019 18:32
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/dc5522cf74fe1afd9a8c1d487f7e525b to your computer and use it in GitHub Desktop.
Save parzibyte/dc5522cf74fe1afd9a8c1d487f7e525b 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 | |
+------------+---------------------+------+-----+---------+----------------+
7 rows in set (0.01 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment