|
Legend: |
Primary key columns |
Columns with indexes |
Implied relationships |
Excluded column relationships |
< n > number of related tables |
|
|
Column |
Type |
Size |
Nulls |
Auto |
Default |
Children |
Parents |
MODULE |
varchar2 |
10 |
√ |
|
null |
|
|
PERSON_ID |
number |
0 |
√ |
|
null |
|
|
COUNT |
number |
0 |
√ |
|
null |
|
|
Analyzed at Mon Sep 20 21:05 MDT 2021
|
View Definition:
SELECT 'Business', person_id, COUNT (person_id)
FROM people_businesses
GROUP BY 1, person_id
UNION
SELECT 'Addresses', person_id, COUNT (person_id)
FROM person_addresses
GROUP BY 1, person_id
UNION
SELECT 'Vehicles', person_id, COUNT (person_id)
FROM people_vehicles
GROUP BY 1, person_id
UNION
SELECT 'Properties', person_id, COUNT (person_id)
FROM people_properties
GROUP BY 1, person_id
UNION
SELECT 'Gangs', person_id, COUNT (person_id)
FROM gang_people
GROUP BY 1, person_id
Possibly Referenced Tables/Views: