在一个数组中保存和打印多个MySQL表的选中结果,可以通过以下步骤实现:
以下是一个示例的Python代码,演示如何在一个数组中保存和打印多个MySQL表的选中结果:
import mysql.connector
# 连接到MySQL数据库
cnx = mysql.connector.connect(user='username', password='password',
host='localhost', database='database_name')
# 创建游标对象
cursor = cnx.cursor()
# 执行查询语句
query = "SELECT * FROM table1"
cursor.execute(query)
# 将查询结果保存到数组
result_array = []
for row in cursor:
result_array.append(row)
# 打印数组中的结果
for result in result_array:
print(result)
# 关闭游标和数据库连接
cursor.close()
cnx.close()
请注意,上述示例代码仅供参考,具体实现方式可能因编程语言和具体需求而有所不同。在实际应用中,还需要考虑异常处理、连接池管理等方面的问题。
领取专属 10元无门槛券
手把手带您无忧上云