How do I use the django query? The following is a written sql statement:
SELECT a.name, count(uri_id) as counts from interface_uri a LEFT JOIN interface_interfacetestcase b on a.id = b.uri_id GROUP BY a.name, a.version_id;
How do I use the django query? The following is a written sql statement:
SELECT a.name, count(uri_id) as counts from interface_uri a LEFT JOIN interface_interfacetestcase b on a.id = b.uri_id GROUP BY a.name, a.version_id;