|
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 |
8 |
√ |
|
null |
|
|
VEHICLE_ID |
number |
38 |
√ |
|
null |
|
VEHICLES.VEHICLE_ID
|
Implied Constraint R |
|
COUNT |
number |
0 |
√ |
|
null |
|
|
Analyzed at Mon Sep 20 21:05 MDT 2021
|
View Definition:
SELECT 'Business', vehicle_id, COUNT (vehicle_id)
FROM business_vehicles
GROUP BY 1, vehicle_id
UNION
SELECT 'Citation', vehicle_id, COUNT (vehicle_id)
FROM citation_vehicles
GROUP BY 1, vehicle_id
UNION
SELECT 'Incident', vehicle_id, COUNT (vehicle_id)
FROM incident_vehicles
GROUP BY 1, vehicle_id
UNION
SELECT 'People', vehicle_id, COUNT (vehicle_id)
FROM people_vehicles
GROUP BY 1, vehicle_id
UNION
SELECT 'Permit', vehicle_id, COUNT (vehicle_id)
FROM permit_vehicles
GROUP BY 1, vehicle_id
Possibly Referenced Tables/Views: