資料庫的入學到精通 增刪改查基本用法

2021-08-21 11:54:22 字數 496 閱讀 4844

查詢:select * from table

插入:insert into table () values();

更新:update table set ~where;

刪除:delete ~from table;

多表查詢:分為內連線,左連線,右連線,並連線

內連線:取兩個表共有的部分.inner join ,例子:select * from student inner join scores;

左連線:取共有的部分,並且以左表為主表,left join,例子:select * from student left join scores;

右連線 :取共有的部分,以右表為主表,right join,例子:select * from student right join scores;

並連線:取兩表的並集,union all,例子select  name  from student  union  all  select id from scores;

資料庫基本操作 增刪改查

資料庫從大體來講,分為庫 表 行,總結對這三個物件的增刪改查 一 資料庫 資料庫的建立 1 管理介面studio 右擊資料庫建立 按兆 檔案位置與日誌選擇同一位置 2 語句建立 create database兩個關鍵字 on後面為主檔案資料庫的修改 使用sql語句 alter database 學校...

資料庫增刪改查

我們知道當我們的表建立後重複執行會出錯,一般我們會這麼處理 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 ...