Editing
MySQL basics
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Basic Commands == Virtually all commands are terminated with a semicolon. The prompt '->' means MySQL is waiting for more instructions or the semicolon is missing.<br> Cancel current command <code>\c</code> and press Enter.<br> MySQL will ignore anything in a command that ends with <code>\c</code> and go back to beginning. Type <code>exit</code> or <code>quit</code> and press Enter anytime you want to exit. These commands do not require a semicolon. <code>show table status;</code> <code>show databases;</code> <code>drop database <db_name>;</code> <code>create database <db_name>;</code> <code>use <db_name>;</code> <code>show tables;</code> <code>show <table_name>;</code> <code>describe <table_name>;</code> <code>drop table <table_name>;</code> <code>DISTINCT</code> informs query to eliminate duplicate result rows <code>\</code> tells MySQL to treat the next character as a character string instead of any special meaning that it may have. mysql>SHOW DATABASES; mysql>DROP DATABASE [databasename]; mysql>CREATE DATABASE [databasename]; mysql>\h Among other things, \h produces this output: <pre> help (\h) Display this help. ? (\?) Synonym for `help'. clear (\c) Clear command. connect (\r) Reconnect to the server. Optional arguments are db and host. edit (\e) Edit command with $EDITOR. ego (\G) Send command to mysql server, display result vertically. exit (\q) Exit mysql. Same as quit. go (\g) Send command to mysql server. nopager (\n) Disable pager, print to stdout. notee (\t) Don't write into outfile. pager (\P) Set PAGER [to_pager]. Print the query results via PAGER. print (\p) Print current command. prompt (\R) Change your mysql prompt. quit (\q) Quit mysql. rehash (\#) Rebuild completion hash. source (\.) Execute a SQL script file. Takes a file name as an argument. status (\s) Get status information from the server. system (\!) Execute a system shell command. tee (\T) Set outfile [to_outfile]. Append everything into given outfile. use (\u) Use another database. Takes database name as argument. </pre>
Summary:
Please note that all contributions to GotOpinion may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
GotOpinion:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
Edit source
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information