在views.py中的函数中,我试图使用SQL查询访问表的标题列(列名),并使用它。我正在为我的Django项目使用MYSQL数据库。但是,出现以下错误:
“您的SQL语法有误;请查看与您的MySQL服务器版本相对应的手册,以使用正确的语法”
我的代码:
views.py
def get_columns(request):
# some other code
with connection.cursor() as cursor:
cursor.execute("DESCRIBE %s", [table_name])
for column in cursor.fetchall():
#use columns extracted here
return (Some appropriate response)
有人可以帮我解决这里的问题吗?