Answers for "How can I see the raw SQL queries Django"

0

raw query in django

from django.db import connection

sql = 'SELECT * FROM db1.a AS a
       JOIN db2.b AS b 
       ON b.some_id = a.id
       WHERE a.name = %s'
cursor = connection.cursor()
try:
      cursor.execute(sql, ['localhost'])
      row = cursor.fetchall()
except Exception as e:
      cursor.close
Posted by: Guest on June-01-2020

Code answers related to "How can I see the raw SQL queries Django"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language