show status mysql code example
Example 1: show table status command in mysql
SHOW TABLE STATUS FROM DB_name WHERE name = 'table_name';
Example 2: how to know status psql in linux
sudo service postgresql status
# To know the status of postgresql
Example 3: mysql status
sudo service mysql status
# or
ps aux | grep mysql
# connexion:
mysql -u <username> -p <database-name>