mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-15 14:59:36 +03:00
commit
e804f0badf
19
pages/common/mysql.md
Normal file
19
pages/common/mysql.md
Normal file
@ -0,0 +1,19 @@
|
||||
# mysql
|
||||
|
||||
> the MySQL command-line tool
|
||||
|
||||
- Connect to database *database_name*
|
||||
|
||||
`mysql {{database_name}}`
|
||||
|
||||
- Connect to database *database_name* using *user* and *password* credentials.
|
||||
|
||||
`mysql -u {{user}} -p{{password}} {{database_name}}`
|
||||
|
||||
or
|
||||
|
||||
`mysql --user={{user}} --password={{password}} {{database_name}}`
|
||||
|
||||
- Execute SQL statements in a script file (batch file)
|
||||
|
||||
`mysql {database_name} < script.sql`
|
Loading…
Reference in New Issue
Block a user