
Originally Posted by
orange
From a concepts view, at least, you should separate the AVEquipment into a separate table. Then a junction table, such as,
RoomHasEquipment to identify which AVEquipment is in which room. Also, a Technician/Staff table with appropriate relationships to Rooms or Buildings. Incidents table would not contain Room Name nor Phone number. A separate Status tale might add some consistency and ease of analysis/reporting. This sort of business "things" breakdown will lead you to use database as intended.
You should Normalize the tables and create the relationships that represent and are based on your Business facts. If you choose to de-normalize later for some purpose important to you --so be it.
Good luck with your project.