- Python 和 MySQL 教程
- Python 和 MySQL - 主页
- Python 和 MySQL - 概述
- Python 和 MySQL - 环境设置
- Python 和 MySQL 示例
- Python 和 MySQL - 连接数据库
- Python 和 MySQL - 创建数据库
- Python 和 MySQL - 删除数据库
- Python 和 MySQL - 选择数据库
- Python 和 MySQL - 创建表
- Python 和 MySQL - 删除表
- Python 和 MySQL - 插入记录
- Python 和 MySQL - 选择记录
- Python 和 MySQL - 更新记录
- Python 和 MySQL - 删除记录
- Python 和 MySQL - Where 关键字
- Python 和 MySQL - Like 关键字
- Python 和 MySQL - 排序数据
- Python 和 MySQL - 使用联接
- Python 和 MySQL - 执行事务
- Python 和 MySQL - 处理错误
- Python 和 MySQL 有用资源
- Python 和 MySQL - 快速指南
- Python 和 MySQL - 有用资源
- Python 和 MySQL - 讨论
Python 和 MySQL - Like 关键字示例
使用 Like 语句从表中有条件地选择记录时,Python 使用 c.execute(q) 函数
语法
# execute SQL query using execute() method. cursor.execute(sql) result = cursor.fetchall() for record in result: print(record)
编号 | 参数和描述 |
---|---|
1 | $sql 必需 - 使用 Like 语句从表中选择记录的 SQL 查询。 |
示例
尝试以下示例,使用 Like 语句从表中选择记录 -
复制并粘贴以下示例为 mysql_example.ty -
#!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","root","root@123", "TUTORIALS") # prepare a cursor object using cursor() method cursor = db.cursor() sql = "Select * from tutorials_tbl Where tutorial_title like 'J%'" # execute SQL query using execute() method. cursor.execute(sql) # fetch all records from cursor result = cursor.fetchall() # iterate result and print records for record in result: print(record) # disconnect from server db.close()
输出
使用 python 执行 mysql_example.py 脚本,并验证输出。
(6, 'Java', 'Julie', datetime.date(2020, 12, 10)) (7, 'JQuery', 'Julie', datetime.date(2020, 5, 10))
广告