MySQL資料庫基礎

來源:互聯網
上載者:User

標籤:mysql   basic   

  1. 安裝mysql

[[email protected] ~]# yum install mysql mysql-server mysql-devel

2.啟動mysql,並設定開機自啟動

[[email protected] ~]# service mysqld start/stop/restart/status        #啟動/關閉/重啟/狀態chkconfig mysqld on/off[[email protected] ~]# chkconfig --list | grep mysqldmysqld         0:off1:off2:on3:on4:on5:on6:off

3.相關配置

/etc/my.cnfmysql設定檔/var/lib/mysqlmysql資料庫檔案port:3306mysql預設連接埠

5.注意事項

mysql> quit                                #quit,退出,等同於ctrl+cBye[[email protected] ~]# ;            #MySQL 絕大對數語句都是以分號結尾,注意是英文模式下的分號。字元和字串用 ‘ ‘ 引起;

4.mysql初始化及登入

[[email protected] ~]# mysql -u root -p ‘123456‘[[email protected] ~]# mysql -u root -p -h localhost             “-h” 指定伺服器位址

5.建立、查看及刪除當前資料庫

mysql> CREATE DATABASE ultraera;Query OK, 1 row affected (0.00 sec)mysql> SHOW DATABASES;+--------------------+| Database           |+--------------------+| information_schema || mysql              || test               || ultraera           |+--------------------+4 rows in set (0.00 sec)mysql> DROP DATABASE ultraera;Query OK, 0 rows affected (0.00 sec)

6.建立、查看及刪除當前表格

#建立表格之前要先選擇資料庫mysql> use ultraera;Database changedmysql> CREATE TABLE ultraera(                         #create 建立表格,至少1列    -> id int NOT NULL,                                         #NOT NULL  不為空白,int 整型    -> name char(20) NOT NULL,                          #char() 字元型 ,()內定義字元長度    -> age int NOT NULL,    -> );Query OK, 0 rows affected (0.01 sec)mysql> DESC ultraera;+-------+----------+------+-----+---------+----------------+| Field | Type     | Null | Key | Default | Extra          |+-------+----------+------+-----+---------+----------------+| id    | int(11)  | NO  |     | NULL    |                || name  | char(20) | NO  |     | NULL    |                || age   | int(11)  | NO  |     | NULL    |                |+-------+----------+------+-----+---------+----------------+3 rows in set (0.00 sec)mysql> DROP TABLE ultraera ;Query OK, 0 rows affected (0.00 sec)


本文出自 “南非部落” 部落格,請務必保留此出處http://ultraera.blog.51cto.com/6640392/1583524

MySQL資料庫基礎

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.