MySQL資料庫基本操作(資料庫操作一)

2021-07-25 06:39:40 字數 666 閱讀 5739

1、命令 行登入語法:

mysql –u使用者名稱 [–h主機名或者ip位址] –p密碼

登入到本機:mysql -h localhost -u root -p密碼

檢視當前使用者的許可權:show grants;

2、建立資料庫

(1)create database database_name;

database_name:要建立的資料庫的名字。

(2)資料庫不存在再建立:create database if not exists database_name;

3、檢視資料庫:show databases;

4、選擇資料庫:use database_name;

5、刪除資料庫:drop database  database_name;

資料庫存在再刪除:drop database if exists database_name;

MySQL基本操作 資料庫和表

資料庫的操作 mysql中,資料庫的基本操作有 建立 檢視 選擇以及刪除4種。mysql表的操作 建立表語法 create table table name column name,column type example create table if not exists runoob tbl r...

MySQL 基本操作 資料庫操作和表操作

檢視所有表 show tables like xx show tables from 庫名 檢視表機構 show create table 表名 資訊更詳細 desc 表名 describe 表名 explain 表名 show columns from 表名 like pattern show t...

Mariadb使用者操作 資料庫基本操作 一

第一部分建立資料庫 1.1 建立並切換操作的資料庫 建立資料庫create database 資料庫名 切換 use 資料庫名 建立資料庫 mariadb mysql create database study db 切換資料庫 mariadb mysql use study db database...