用python操作mysql数据库(之“删除”操作)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-
  
import MySQLdb
  
#建立连接
conn = MySQLdb.connect(host='127.0.0.1',user='root',passwd='1qaz#EDC',db='test_db')
cur = conn.cursor()
  
#对数据进行操作
sql = "delete from user where id=%s" #定义一条删除指定ID的sql语句
params = ('3')    #参数 ID为3
  
cur.execute(sql,params)    #执行sql语句
conn.commit() #提交请求
  
#关闭数据库连接
cur.close()
conn.close()


本文转自 TtrToby 51CTO博客,原文链接:http://blog.51cto.com/freshair/1876223

上一篇:[编程技巧] 巧用CPU缓存优化代码:数组 vs. 链表


下一篇:linux nfs 配置