內容回顧
1 資料庫是什麼?
2 mysql安裝
3 使用者授權
4 資料庫操作
資料表資料型別
外來鍵---一對多
---一對一
----多對多
自增
唯一索引 unique
資料行排序 :order by desc/asc
分組:group by
連表:left join(左邊全部顯示)
right join(右邊全部顯示)
inner join (去重)
臨時表觸發器
函式儲存過程
---游標 cursor
----事務 再提交的時候,如果整個程式沒有完全沒有執行完畢的話,會回滾到原始狀態,稱為原子事物
pymysql
---儲存過程呼叫方式
-----commit
-----select fetchone
-----sql注入(注釋「- -」)
select * from user where username = 『x』 and pwd =『sfd』
mysql學習筆記 51 mysql學習筆記
初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...
mysql學習筆記 51 Mysql 學習筆記
一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...
mysql做筆記 mysql學習筆記
alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...