Я хочу добавить строку к результату моего запроса в mysql.
Я попробовал этот код:
mensaje = input ("introduzca el sms que desea enviar: ")
cursorsql1 = conectar.cursor()
sql = "select msisdn, '(mensaje)'VALUES(%s) as mensaje from perfiles where tarifa not like '%Iot%' and transparent_properties not like '%Momo%' and state like '%active%' and msisdn like '56943404789' and created_at between subdate(current_date, 1) and current_date".format(mensaje, values)
cursorsql1.executemany(sql,mensaje)
columnas = cursorsql1.fetchall()
print(columnas)
ошибка это
mysql.connector.errors.ProgrammingError: Параметры для запроса должны быть списком или кортежем.
Я хочу, чтобы результаты выглядели так:
| 56953404789 | some message |
Любая идея, что может вызватьмоя ошибка?
Заранее спасибо за любую помощь