資料庫增刪改查

2021-10-01 21:30:39 字數 975 閱讀 8309

資料庫操作:

show

databases

;

create

database 資料庫名;

use 資料庫名;
select

database()

;

drop

database 資料庫名;

資料表操作 :
create

table 表名(

欄位名 型別名 約束

);

show

tables

;

drop

table 表名;

資料表增刪改查:
全列插入:insert 表名 values(.

..資料...

);部分插入:insert 表名(列1,.

..)values

(值1,..

.);多行插入:insert 表名(列1,.

..)values

(值1,..

.),(值2,.

..);

查詢所有列:select

*from 表名;

指定條件查詢:select

*from 表名 where 查詢條件;

查詢指定列:select 列1

,列2,

from 表名;

修改單列:update 表名 set 列1

=值1,列2

=值2where 條件;

修改全部:update 表名 set 條件;

delete

from 表名 where 刪除條件;

資料庫增刪改查

我們知道當我們的表建立後重複執行會出錯,一般我們會這麼處理 create table if not exists stuinfo 學了新建表我們還應該知道乙個東西,如何刪除表 deop table table name 怎麼檢視別人的見表語句呢 show create table stuinfo 怎...

資料庫增刪改查

import pymysql def getmysqlconn conn pymysql.connect host 172.16.238.130 port 3306,db my mysql user root password 123456 charset utf8 return conn def ...

資料庫增刪改查

基本語法 操作語句 create 建立 alter 更新 drop 刪除 一次性刪除乙個表中所有的資料 包括日誌 truncate table 表名 選中或者使用該資料庫 說明接下來的操作都是針對該資料庫進行 use 資料庫名稱 建立create database 資料庫名 create table...