資料庫(database)是按照資料結構來組織、儲存和管理資料的倉庫,
每個資料庫都有乙個或多個不同的api用於建立,訪問,管理,搜尋和複製所儲存的資料。
我們也可以將資料儲存在檔案中,但是在檔案中讀寫資料速度相對較慢。
所以,現在我們使用關係型資料庫管理系統(rdbms)來儲存和管理的大資料量。所謂的關係型資料庫,是建立在關係模型基礎上的資料庫,借助於集合代數等數學概念和方法來處理資料庫中的資料。
rdbms即關聯式資料庫管理系統(relational database management system)的特點:
net stop mysql
net start mysql
登陸終端(windows cmd或者linux 命令列下)且已經安裝mysql-client軟體;
語法如下: mysql -h 主機ip -u 使用者名稱 -p 使用者密碼
例如:mysql -h 192.168.31.194 -u root -p 123456(安裝mysql如果沒有相應的設定密碼就會預設密碼是123456)
即可登陸mysql管理
鍵入命令:mysql -u root -p, 回車後提示你輸入密碼,輸入:12345,然後回車即可進入到mysql中了,mysql的提示符是:
mysql>
注意,如果是連線到另外的機器上,則需要加入乙個引數-h機器ip
格式:grant 許可權 on 資料庫.* to 使用者名稱@登入主機identifiedby "密碼"
如,增加乙個使用者user1密碼為password1,讓其可以在本機上登入, 並對所有資料庫有查詢、插入、修改、刪除的許可權。首先用以root使用者連入mysql,然後鍵入以下命令:
grant select,insert,update,delete on *.* to user1@localhost identified by "password1";
如果希望該使用者能夠在任何機器上登陸mysql,則將localhost改為"%"。
如果你不想user1有密碼,可以再打乙個命令將密碼去掉。
grant select,insert,update,delete on mydb.* to user1@localhost identified by "";
登入到mysql中,然後在mysql的提示符下執行下列命令,每個命令以分號結束。
1、 顯示資料庫列表。
show databases;
預設有兩個資料庫:mysql和test。 mysql庫存放著mysql的系統和使用者許可權資訊,我們改密碼和新增使用者,實際上就是對這個庫進行操作。
2、 顯示庫中的資料表:
use mysql;
show tables;
3、 顯示資料表的結構:
describe 表名;
4、 建庫與刪庫:
create database 庫名;
drop database 庫名;
5、 建表:
use 庫名;
create table 表名(字段列表);
drop table 表名;
6、 清空表中記錄:
delete from 表名;
truncate table 表名;
7、 顯示表中的記錄:
select * from 表名;
匯出資料: mysqldump--opt test > mysql.test
即將資料庫test資料庫匯出到mysql.test檔案,後者是乙個文字檔案
如:mysqldump -u root -p123456 --databases dbname > mysql.dbname
就是把資料庫dbname匯出到檔案mysql.dbname中。
2. 匯入資料:
mysqlimport -u root -p123456 < mysql.dbname。
3. 將文字資料匯入資料庫:
文字資料的字段資料之間用tab鍵隔開。
use test;
load data local infile "檔名" into table 表名;
1:使用show語句找出在伺服器上當前存在什麼資料庫:
mysql> show databases;
2:建立乙個資料庫mysqldata
mysql> create database mysqldata;
3:選擇你所建立的資料庫
mysql> use mysqldata; (按回車鍵出現database changed 時說明操作成功!)
4:檢視現在的資料庫中存在什麼表
mysql> show tables;
5:建立乙個資料庫表
mysql> create table mytable (namevarchar(20), *** char(1));
6:顯示表的結構:
mysql> describe mytable;
7:往表中加入記錄
mysql> insert into mytable values ("hyq","m");
8:用文字方式將資料裝入資料庫表中(例如d:/mysql.txt)
mysql> load data local infile "d:/mysql.txt" into table mytable;
9:匯入.sql檔案命令(例如d:/mysql.sql)
mysql>use database;
mysql>source d:/mysql.sql;
10:刪除表
mysql>drop table mytable;
11:清空表
mysql>delete from mytable;
12:更新表中資料
mysql>update mytable set ***="f" where name='hyq';
接下來我們來進行實際操作。
c:\windows\system32>cd c:\program files\mysql\mysql server 5.7\bin
c:\program files\mysql\mysql server 5.7\bin>mysql -u root -p
enter password: ******
3.啟動成功之後在接下來可以看到mysql的版本號,時間和mysql的其他指令。比如help;
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 8
server version: 5.7.21-log mysql community server (gpl)
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
Mysql基礎常識
1 三種操作語句 dml 資料管理語句 插入資料insert,刪除資料delete,更新資料update,查詢資料select dcl 資料庫控制語句 如建立資料庫使用者,設定許可權等 2 資料庫效能 qps 每秒鐘處理的查詢量。tps 每秒鐘處理的事務數量 資料庫服務速度緩慢的可能原因 大量的併發...
MySQL的指令使用和介紹
一 mysql是什麼 軟體 software 資料庫管理系統 dbms 2.1 關係型資料庫管理系統 oracle,sqlserver,mysql 2.2 非關係型資料庫管理系統 nosql 關係型資料庫管理系統 二 mysql的特點 簡單功能強大 有開放的版本 三 mysql應用架構 基於c s架...
MySQL基礎指令
指令模式 設定 mysql 的管理密碼 mysqladmin u root password 12345 顯示資料表結構,data 資料庫 mysqlshow data 顯示資料表結構,data 資料庫的 123 資料表 mysqlshow data 123 重新設定 auto increment ...