簡單mysql常用命令

2022-09-03 07:45:09 字數 1614 閱讀 6836

在命令列 輸入 mysql -uroot -p123456 (-u賬號 -p密碼)登入mysql伺服器

1.設定mysql密碼

set password for 'root'@'localhost' = password('123456');

--所有sql語句都要以分號『 ;』結尾

2.檢視當前伺服器有哪些資料庫

show databases;

3.切換工作資料庫(use 庫名)

use test;

4.建立新資料庫 庫名

create database company;

5.丟棄資料庫 庫名

drop database company;

6.檢視當前資料庫有哪些表

show tables;

7.匯入執行sql指令碼

source d;/mywork/mysql/company.sql;

8.檢視表中所有資料 (select * from ...表名)

select * from employees;

9.檢視表結構(因為常用所以可以省略ribe)(country 表名)

desc[ribe] country;

10.建立表(create table 表名)

create table customer(

id int,

name varchar(20),

age int,

birthday date

);11.插入記錄 (表名)

insert into customer(

id,name,

age,

birthday

)values(

1,'張三',

30,'1994-11-2'

);12.更新記錄所有匹配到的資料

update

customer

setid = 1,

age = 40;

(更新限定記錄)

update

customer

setid = 2,

age = 40

where

id = 2;

13.刪除記錄

delete from

customer

where

id = 3;

crud -- 增刪改查

查詢 select

插入 insert into

更新 update

刪除 delete from

資料管理的層次

| --資料庫1(目錄)

| --表1

|-- 記錄1

|-- 記錄2

......

| --表2

......

| --資料庫2(目錄)

rmdb關係型資料庫管理系統

列的別名,使用as關鍵字,並且可以省略

select

code as c,

population p

from

country;

select

code,

population

from

country;

mysql 常用命令 mysql 簡單基礎

檢視所有的資料庫 show databases 選擇資料庫 use test 選擇 test 資料庫 檢視資料庫中所有的表已經選擇了資料庫 show tables 檢視資料庫中所有的表 show tables from 檢視當前已選擇的資料庫 select database 建立資料庫 create...

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...