MariaDB常用命令

2022-03-10 07:47:57 字數 2048 閱讀 5255

show databases;                  顯示資料庫

use mysql;                            進入資料庫

show tables;                         顯示示資料庫中的表

desc user;                            檢視user表的資料結構

flush privileges;                    重新整理資料庫資訊

select host.user,password from user;     查詢user表中的host,user,password欄位

create database westos;                        建立westos資料庫

use westos;                            

create table linux(                                   建立表,username,password欄位

username varchar(15) not null,

password varchar(15) not null

);select * from mysql.user;                           查詢mysql庫下的user表中的所以

alter table linux add age varchar(4);          新增age欄位到linux表中

alter table linux drop age                刪除age欄位

alter table linux add age  varchar(5)  after name        在name欄位後新增欄位age

create database database-name; 建立新的資料庫

drop database database-name; 刪除資料庫

use database-name; 指定使用資料庫

2.展示所用關聯式資料庫(database)的表單資訊及資料記錄操作

show tables; 顯示當前關聯式資料庫中的表單資訊。

create table table-name (field1 type,filed2 type); 建立表單並規定格式

describe table-name; 檢視表單結構描述

drop table table-name; 刪除表單

delete from table-name; 刪除表單所有內容

delete from table-name where filed條件; 刪除滿足where條件的所在行

select * from table-name; 檢視表單資料

select field1,filed2 from table-name; 只檢視field1,2所在列內容資料

select * from table-name where field條件; 查詢出filed滿足條件的行的資料

update table-name set filed=?; 修改field所有資料為?

update table-name set filed=? where field條件; 修改滿足where的field資料變為?

下表是where使用的引數作用。

3.使用者管理及使用者許可權管理

1.使用者管理(使用者資訊儲存於mysql關聯式資料庫的user表單中,)

create user 使用者名稱@主機名 identified by '密碼'; 建立新使用者

select host,user,password from user; 檢視使用者資訊(幾項重要資訊), 其實就是查詢mysql資料庫中user表單資訊,其它對使用者修改,刪除操作類似操作普通表單。

2.使用者許可權管理

grant 許可權 on database-name.table-name to 使用者名稱@主機; 對某關聯式資料庫中的某表單賦許可權

許可權:select, update, delete, insert

show grants for 使用者名稱@主機; 檢視使用者許可權  

docker常用命令 Docker 常用命令筆錄

格式docker run 選項 映象 命令 引數.示例docker run it rm ubuntu 16.04 bash 示例解釋 it 這是兩個引數,乙個是 i,表示互動式操作,乙個是 t表示終端 rm 這個引數是說容器退出後隨之將其刪除 ubuntu 16.04 這是指用ubuntu 16.0...

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

Linux常用命令 vi vim常用命令介紹

vi vim是linux系統自帶的乙個功能豐富的文字編輯器 命令字元 介紹dd 雙擊d 剪下當前行 num dd 雙擊d 剪下當前行 例如10dd可以刪除10行 yy拷貝當前行 p將內容貼上至游標所示位置 命令 說明 set number 頁面顯 hi 檢視當前系統提供的高亮模式 match col...