I want to select data from a database table that is not part of my Django project. I added the database connection info to the settings file and I can do raw sql queries against
sure, you just have to use
SomeObject.objects.using('database_name').all()
to do your queries