| | 426 | |
| | 427 | Now we can list the final relevant and core tables derived as a result from these normalization steps: |
| | 428 | |
| | 429 | R11: `Account` |
| | 430 | (account_id, acc_email, person_name, person_surname, password, years_experience) |
| | 431 | |
| | 432 | R12: `Company` |
| | 433 | (company_embg, company_name) |
| | 434 | |
| | 435 | R2: `Vehicle` |
| | 436 | (vehicle_id, plate_num, model, brand, capacity, year_manuf) |
| | 437 | |
| | 438 | R3: `Trip` |
| | 439 | (trip_id, date, status, free_seats, route_id) |
| | 440 | |
| | 441 | R4: `Route` |
| | 442 | (route_id, days_active) |
| | 443 | |
| | 444 | R5: `Location` |
| | 445 | (location_id, loc_name, latitude, longitude) |
| | 446 | |
| | 447 | R51: `Ticket` |
| | 448 | (ticket_id, two_way, student_disc) |
| | 449 | |
| | 450 | R52: `Child_Ticket` |
| | 451 | (child_embg, child_disc) |
| | 452 | |
| | 453 | R6: `Payment` |
| | 454 | (payment_id, total_price, n_tickets, time_purchased, date_purchased) |
| | 455 | |
| | 456 | R7: `Review` |
| | 457 | (review_id, review_description, rating) |
| | 458 | |