資料的增刪改查

2022-05-25 01:09:09 字數 805 閱讀 1957

匯入模組

import pymysql

conn = pymysql.connect(

user = "root",

db = "day36",

host = "127.0.0.1",

post = 3306,

charset = "utf8"

autocommit = true  #自動提交確認

cursor = conn.cursor(cursor = pymysql.cursors.dictcursor)

#以字典形式輸出出來

#獲取使用者輸入的使用者名稱和密碼,然後取資料庫中校驗

username = input("usename>>:").strip()

password = input("password>>:").strip()

sql = select * from userinfo where name = %s and password = %s"

print(sql)

增sql = "insert into userinfo(name,password,dep_id) values ("jason",789,1)"

改sql = "update userinfo set name = "egons" where id = 6"

刪除sql = "delete from userinfo where id = 1"

res = cursor.execute(sql)

conn.commit()   #確認當前操作,真正的同步到資料庫

如果真想操作,必須有一步確認操作。

資料增刪改查

import sqlite3 from db import get db conn,close db conn 測試 db file score.db 插入資料 definset score data 1 獲取連線 conn sqlite3.connect db file 2 開啟游標cursor ...

資料的增刪改查

語法 insert into beauty 欄位1,欄位2,values 值1,值2,特點 1 欄位和值列表必須一一對應 2 字元型和日期型必須用單引號引起來 3 欄位的順序可以和表中字段的順序不一致 4 不可以為null的字段,必須插入值,比如說主鍵id 可以為null的字段,可以不用插入值,使用...

Mysql資料增刪改查

建立資料庫表 haha 並寫入字段 create table haha user name varchar 32 age int,sin date date 向字段寫入資料 insert into xx value xixi 12 2016 12 12 insert into xx values w...