[Answered ]-Django – want to use inspectdb to get only one table. Using MS SQL Server

1👍

You can pass the name of the table to do it.

python manage.py inspectdb table1

Or multiple tables

python manage.py inspectdb table1 table2

Here’s the the link to inspectdb documention for Django 4.0.

0👍

For me this worked.

python manage.py inspectdb --database MyDb table1

Leave a comment