|
No.
make a table of devices and a table of ports and use a PK / FK relationship
so 1 device may have 5 matching records in ports another may have 24 and other ones may have 100 or more.
BUT the ports table only ever needs "x" columns deviceID, portNo, Destination_Device, Cable_Colour, Cable_Size, Cable_Designation for example
device table needs ID, Manufact, Model, SerialNo, Ports, LocationID, etc etc
Locations = ID, ShortName, Description etc
if you need to use ANY data more that twice use a separate table and join on IDs. It's a process called "normalisation"
It makes the database smaller with less redundant data and can make queries MUCH quicker.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
|