MySql建立資料庫 學習系列003

2021-07-16 02:13:56 字數 1311 閱讀 3813



環境變數設定:

1、開啟

windows

環境變數設定,新建變數名:

mysql_home

,變數值為

mysql

安裝目錄路徑。

2、在path

下增加;%mysql_home%\bin

mysql

中的資料型別。

數字型別:

整數:tinyint smallint mediumint int bigint

浮點數:float double real decimal

字串型別:

字串:char  varchar

文字:tinytext text mediumtext longtext

二進位制:tinyblob blob mediumblob longblob

登入到mysql

當mysql

服務已經啟動,輸入以下格式的命名:

mysql -h 主機名

-u 使用者名稱

-p-h:該命令用於指定客戶端所登入的

mysql

主機名,登入當前機器該引數可以省略。

-u:所要登入的使用者名稱。

-p:告訴伺服器將會使用乙個密碼來登入,如果所要登入的使用者密碼為空,可以忽略此選項。

建立使用者

登入mysql

mysql -u root -p

執行語句如出現如下錯誤時,

如:error 1820:

you must reset your password using alter user 「

輸入如下命令:

mysql>alter user

『root』@

』localhost

』identified by

『zmyy』;

mysql>flush privileges;

顯示資料庫

show databases;

使用資料庫

use mysql;」

建立使用者

insert into user(host,user, authentication_string,ssl_cipher,x509_issuer,x509_subject) values("localhost","his","his",'','','');

建立資料庫

create database his_db character set gbk;

授權 grant all privileges on his_db.* to his@localhost identified by 'his';

MYSQL資料庫學習系列五

mysql資料庫學習系列五五 mysql運維實踐 5.1 mysql日誌系統 什麼是日誌 日誌 log 是一種順序記錄事件流水的檔案 記錄計算機程式執行過程中發生了什麼 多種多樣的用途 o幫助分析程式問題 o分析服務請求的特徵 流量等 o判斷工作是否成功執行 o等等 mysql日誌的分類 伺服器日誌...

建立mysql資料庫總結 MySQL資料庫總結

引擎 檢視mysql預設引擎 show variables like storage engine 檢視表引擎 show table status from 資料庫名 修改表引擎 alter table 表名 engine innodb 建立時直接定義引擎 create table 表名 engin...

建立mysql資料庫

登陸資料庫 如何建立乙個資料庫和表單 new mysql.php 獲取連線mysql connect 伺服器,使用者名稱,密碼 con mysql connect localhost root if con 建立乙個資料庫school if mysql query create database s...