mysql 安裝和簡單應用

2021-04-30 18:10:45 字數 1435 閱讀 9497

1. yum install mysql

2. yum install mysql-server          yum install mysql-devel

3. /etc/rc.d/init.d/mysql restart

4. mysql -u root

5. grant 新增使用者

格式:grant select on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"

6. use 資料庫名稱

7. flush privileges;

8. 修改密碼

格式:mysqladmin -u使用者名稱 -p舊密碼  password 新密碼

10.顯示命令

1、顯示資料庫列表。

show databases;

剛開始時才兩個資料庫:mysql和test。mysql庫很重要它裡面有mysql的系統資訊,我們改密碼和新增使用者,實際上就是用這個庫進行操作。

2、顯示庫中的資料表:

use mysql;

show tables;

3、顯示資料表的結構:

describe 表名;

4、建庫:

create database 庫名;

5、建表:

use 庫名;

create table 表名 (字段設定列表);

6、刪庫和刪表:

drop database  庫名;

drop table  表名;

7、將表中記錄清空:

delete from 表名;

8、顯示表中的記錄:

select * from 表名;

錯誤處理:

1. 錯誤資訊:

stopping mysql:                                            [failed]

initializing mysql database:  neither host 'vm0000182' nor 'localhost' could be looked up with

/usr/bin/resolveip

please configure the 'hostname' command to return a correct hostname.

if you want to solve this at a later stage, restart this script with

the --force option

[failed]

原因: 原因是/etc/hosts 檔案為空的關係。

修改方法:在 /etc/hosts 檔案中新增下面資訊:

#localhost

127.0.0.1               localhost.localdomain localhost

mysql 簡單應用 MYSQL 簡單應用

簡單整理 待補充 安裝install mysql community release el7 5.noarch.x86 64.rpm yum install mysql mysql server mysql devel mysql secure installation 建立密碼 建立使用者 gra...

PHP 和 MYSQL 簡單應用

created on 2010 11 9 to change the template for this generated file go to window preferences phpeclipse php code templates 資料庫連線 conn mysql connect lo...

MySQL安裝和簡單操作

mysql的安裝請參考下面這篇部落格,講述的非常詳細,各種截圖也很清晰。大家可以安裝下面的這個部落格來進行一些簡單的mysql的操作,講得非常詳細,有語法和具體例項。建立乙個表 書名 出版社 create table runoob tbl runoob id int not null auto in...