Create a database in MySQL for Mac

Source: Internet
Author: User

Before reading the blog, make sure you had succcessfully installed MySQL for Mac.

Create a database:
    1. Login
    2. Create a database
    3. Create tables
$ mysql-u Root-p$ Enter Password:***Welcome ... Type'Help ;'Or'\h'  forHelp. Type'\c'ToClearThe current input statement./*View Databases*/MySQL>show databases;+--------------------+| Database |+--------------------+| Information_schema | | Leave_info_system | | MySQL | | Performance_schema | | SYS |+--------------------+5RowsinchSet (0.03sec)/*Create New Database*/MySQL>CREATE DATABASE TestDB; Query OK,1Row affected (0.01sec)/*If you want to operate at a specific DB*/MySQL>Use Testdb;database changed/*Create new tables in TestDB*/MySQL>CREATE TABLE TESTTB (-Testnum VARCHAR ( -) not NULL,-TestName VARCHAR ( +) not NULL,-testdate DATE not NULL); Query OK,0Rows Affected (0.12sec)/*view fields in TESTTB*/MySQL>describe TESTTB;+----------+-------------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+----------+-------------+------+-----+---------+-------+| Testnum | varchar -) |     NO | |       NULL | || testname | varchar +) |     NO | |       NULL | || TestDate |Date|     NO | |       NULL | |+----------+-------------+------+-----+---------+-------+3RowsinchSet (0.01Sec

Create a database in MySQL for Mac

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.