I inherited this database structure so I know it's not normalized like it should be.
I have a report with multiple IDs in the same record that all link to a description table.
in my main table a tray has 8 slots...
trayID = 0001
cookie1 = C
cookie2 = P
cookie3 = M
cookie4 = NULL
cookie5 = NULL...
I have an HTML form with multiple checkboxes using the same name...DRIVER as follows
<input type="checkbox" name="DRIVER" value="4"></td>
<input type="checkbox" name="DRIVER" value="5"></td>
<input type="checkbox"...
I have 2 tables:
'Vehicles' which has a UniqueVehicleNumber
and
'Transactions' with a UniqueVehicleNumber which equals the Vehicles.UniqueVehicleNumber
The Transactions table stores vehicle service data with a time/date and the UniqueVehicleNumber
I need to get a list of Vehicle numbers from...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.