MySQL筆記一(基本語句)

2021-10-21 19:28:32 字數 1381 閱讀 6081

記錄下mysql基本語句

檢測系統是否安裝:  rpm -qa | grep mysql 解除安裝

普通解除安裝:rpm -e mysql

強力解除安裝:rpm -e --nodeps mysql

安裝(linux)

wget

rpm -ivh mysql-community-release-el7-5.noarch.rpm

yum update

yum install mysql-server

檢視是否啟動: ps -ef | grep mysqld

選擇資料庫:use 資料庫名 

列出資料庫列表:show databases

列出指定資料庫的所有表:show tables

顯示資料表的屬性:show columns from 資料表

顯示資料表的詳細索引資訊:show index from 資料表 

建立資料庫:create database 資料庫名

刪除資料庫:drop database 《資料庫名》;mysqladmin -u root -p drop runoob

建立資料表:create table table_name (column_name column_type);

刪除資料表:drop table table_name ;

資料表中插入資料:

insert into table(a,b,...n)

values

(a,b,.....n)

查詢(select):where類似於if條件,根據表中字段讀取指定資料

select a1,a2 from table1 where ***

更新(update):用於修改後更新mysql資料

update table1 set x=new_value1,y=new value2 where ***

delete 刪除資料表中的記錄

delete from table1 where ***

union:用於連線兩個以上的 select 語句的結果組合到乙個結果集合中。多個 select 語句會刪除重複的資料。

select expression1, expression2, ... expression_n

from tables

[where conditions]

union [all | distinct]

select expression1, expression2, ... expression_n

from tables

[where conditions];

一 MySql基本語句(一)

資料庫 庫的操作 1 查詢庫 show databases 2 建立庫 create database 庫名 character set 編碼格式 utf8 3 檢視資料庫建立語句 show create database 庫名 4 刪除資料庫 drop database 資料庫名 5 修改資料庫 ...

筆記 基本MySQL語句大全

下面的例子以newsdb資料庫下的表 news 為例進行刪改增添,實際操作過程中可以根據資料庫和表的不同更改語句內容 建立資料庫 create database newsdb 刪除資料庫 drop database newsdb 建立表 use newsdb create table news id...

mysql基本語句 mysql基本語句

mysql關係型資料庫rds中的老大哥,增刪改查是mysql入門的基礎 增刪改查語句 增刪改查的語句命令為 增 insert 刪 delete 改 update 查 select或者show 庫操作建立資料庫 create database shujukuba 建立帶字符集的資料庫 create d...