1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/linux/mycli.md
2021-08-16 12:34:01 +02:00

442 B

mycli

A CLI for MySQL, MariaDB, and Percona with auto-completion and syntax highlighting. More information: https://manned.org/mycli.

  • Connect to a database with the currently logged in user:

mycli {{database_name}}

  • Connect to a database with the specified user:

mycli -u {{user}} {{database_name}}

  • Connect to a database on the specified host with the specified user:

mycli -u {{user}} -h {{host}} {{database_name}}