In django I named my app as "Home". I created a class named "images" inside models.py and make migrations thus I got table created in my database as "Home_images". but the problem arises when I tried to execute raw query on that table.
query = "select * from Home_images"
cursor.execute(query)
string query gets converted into smaller letters so django couldn't find table named "Home_images". as it tries to find for table names "home_images", which is not present in database.