Common Operations of MySql statements-create a database, select a database, create a table, and garbled Chinese characters in the database;

Source: Internet
Author: User

Create a database

Create database database_name;

Create Database database_name

Select Database

USE database_name;

Select database database_name

Delete Database

Drop database database_name;

Delete database database_name

Create a table

Create table table_name (

ID varchar (4) not null,

NAME varchar (50) NOT NULL

);

Create Table table_name create two field ID names in the table

Fix Chinese garbled characters in Databases

I can set the database encoding.

Set names gb2312;

Insert fields in the table

Alter table 'table _ name' ADD 'wcj 'VARCHAR (30) not null;

Insert a wcj field in table_name

 

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.