MySQL的安裝和基本操作

2021-10-01 02:28:43 字數 2900 閱讀 9151

1、檢視資料庫;

show databases;(其中有個mysql資料庫存放了使用者名稱和密碼)

2、建立資料庫firstdb;

create database firstdb;

3、進入資料庫;

use firstdb;

4、檢視當前使用的資料庫;

select database();

5、建立表;

create table text1(《欄位名》 《型別》(長度),…);

型別:int,char,varchar,float,double,text…

6、檢視表;

show tables;

7、向表中插入資料;

insert into text1 values (『0001』,『zhangsan』);

8、檢視表中所有資料;

select * from text1;

9、檢視某一指定資料;

select * from text1 where id=『0001』;

或者 select * from text1 where id=』0001『 and name=』zhangsan』;

id和name不一致時會報錯。

10、檢視表中類似元素;

11、匯入sql檔案;

use demo(資料庫名);

source d:\…\employees表資料集.sql(檔名)

最後不加分號。

12、查詢資料:

(1)查詢表中所有資料:select * from student(表名);

(2)查詢某列:select id,name…(欄位名) from student;

(3)查詢區間:select * fromscorewheredegreebetween60and80;

select * fromscorewheredegree>60anddegree<80;

(4)公升序、降序:

select * from student order by scoredesc;(降序)

select * from student order by scoreasc;(公升序)

以class公升序,score降序:

select * from student order by class asc,score desc;

(5)統計:

select count(*) from student where class=『001』;

刪除表中資料;

delete from text1(表名) where id=『0001』;

13、修改表中資料;

14、在表中增加字段;

15、更改表名;

rename table text1(原表名) to text(新錶名);

16、刪除表;

drop table text(表名);

刪除資料庫;

drop database firstbd(資料庫名);

17、對資料的約束操作;

(1)primary key 標識該字段為該錶的主鍵,可以唯一的標識記錄,不能為空

(2)foreign key 標識該字段為該錶的外來鍵

用於兩表之間,乙個表可以有乙個或多個外來鍵,外來鍵是表的乙個字段,不是父表的主鍵,但對應子表的主鍵。

student為子表,class為student2父表的外來鍵,對應student中的id。

(3)not null 標識該欄位不能為空

(4)unique key 標識該字段的值是唯一的

(5)unsigned 無符號

檢視表中的約束;

show create table student(表名);

MySQL的安裝配置和基本操作

我使用的是mysql5.7.13 zip archive,在網上邊查邊安裝的,把安裝過程記錄一下 開啟mysql資料夾,新建my.ini配置檔案和乙個名為 data 的資料夾,在my.ini裡面輸入如下 mysql 設定mysql客戶端預設字符集 default character set utf8...

GIT基本安裝和基本操作

一,git是什麼 git是目前世界上最先進的分布式版本控制器 沒有之一 git log檢視最近的日誌狀態 最好的是回退到具體的版本號 前面的會刪除的 二,什麼是工作區和版本區 git目錄就是git的版本庫 如圖所示 這個checkout就是乙個撤銷,就是還沒有add,就可以直接回退到我們我們最後一次...

Zookeeper的安裝和基本操作

一 zookeeper簡介 1 安裝環境 4 解壓。解壓到需要安裝的目錄下 解壓命令 tar zxf apache zookeeper 3.5.8.tar.gz c data 解壓之後的目錄如下,根據版本可能會有一些小的差別 5 進入conf目錄,建立乙個名為 zoo.cfg 的檔案 可複製zoo ...