I'm using terminal for mysql
I want to know what column my table has, but it's empty and dont show anything to me
Show Databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| test |
+--------------------+
Use test
Database changed
Show Tables;
+----------------+
| Tables_in_test |
+----------------+
| tblPerson |
| tblStudent |
+----------------+
What Should I do to see the column of my table, even if its empty, like this:
+----+-----------------+---------+
| id | name | is_male |
+----+-----------------+---------+
| | | |
+----+-----------------+---------+
not this:
Empty set (0.00 sec)