Mysql Common commands

Source: Internet
Author: User

Mysql Common commands
Mysql operation connection Mysql $ mysql-h host address-u user name-p password Reset mysql user password update user set password = password ("password") where user = 'username '; the Database operation displays show databases for all databases. enter the name of a database use database. create Database <database Name> delete database <Database Name> Table operation displays show tables for all tables; create a new table create table name (Field List); delete the drop table Name; clear the table record: delete from table name; display the table record: select * from table name; insert into <Table Name> [(<field name 1> [,.. <field name n>])] values (Value 1) [, (value n)] update field content update table name set field name = add field alter table name add field type in the table; modify the rename table original table name to the new table name. Of course, these operations can be more intuitive through the GUI, but after all, commands are the basis, only by understanding the commands can you understand how the GUI runs and how it works.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.