📜  如何使用Python在 MySQL 中使用 IF 语句

📅  最后修改于: 2022-05-13 01:55:24.071000             🧑  作者: Mango

如何使用Python在 MySQL 中使用 IF 语句

先决条件: Python:MySQL 创建表

在本文中,我们将看到如何使用Python在 MySQL 中使用 if 语句。 Python允许将各种数据库服务器与应用程序集成。从Python访问数据库需要一个数据库接口。 MySQL Connector -Python 模块是Python中用于与 MySQL 数据库通信的 API。

方法:

  • 导入模块。
  • 向数据库发出连接请求。
  • 为数据库游标创建一个对象。
  • 执行以下 MySQL 查询:
IF(condition, value_if_true, value_if_false)

示例 1:

在这个例子中,我们使用这个数据库表和以下查询;

下面是实现:

Python3
# Establish connection to MySQL database
import mysql.connector
  
db = mysql.connector.connect(
  host="localhost",
  user="root",
  password="root123",
  database = "geeks"
  )
  
#getting the cursor by cursor() method
mycursor = db.cursor()
  
insertQuery = " Select Value, IF(Value>1000,'MORE','LESS') from salary;"
mycursor.execute(insertQuery)
myresult = mycursor.fetchall()
print(myresult)
  
# close the Connection
db.close()


Python3
# Establish connection to MySQL database
import mysql.connector
  
db = mysql.connector.connect(
  host="localhost",
  user="root",
  password="root123",
  database = "geeks"
  )
  
#getting the cursor by cursor() method
mycursor = db.cursor()
  
insertQuery = " Select City, IF(City = 'Patna','True','False') from persons;"
mycursor.execute(insertQuery)
myresult = mycursor.fetchall()
  
print(myresult)
  
# close the Connection
db.close()


输出:

示例 2:

在这个例子中,我们使用这个数据库表和以下查询;

下面是完整的实现:

蟒蛇3

# Establish connection to MySQL database
import mysql.connector
  
db = mysql.connector.connect(
  host="localhost",
  user="root",
  password="root123",
  database = "geeks"
  )
  
#getting the cursor by cursor() method
mycursor = db.cursor()
  
insertQuery = " Select City, IF(City = 'Patna','True','False') from persons;"
mycursor.execute(insertQuery)
myresult = mycursor.fetchall()
  
print(myresult)
  
# close the Connection
db.close()

输出: