在views.py的函数中,我尝试使用sql查询访问表的标题列(列名),并使用它。我在django项目中使用mysql数据库。但是,我得到以下错误:
“您的sql语法有错误;请查看与您的mysql服务器版本相对应的手册,以了解要使用的正确语法。”
我的代码:
视图.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)
有人能帮我解决这个问题吗?
暂无答案!
目前还没有任何答案,快来回答吧!