In MySQL, is it bad to have a table structure like the following...
Table stuffA
ID
Table stuffB
ID
Table superStuff
ID
type
stuffID
...where depending on the value of superStuff(type), superStuff(stuffID) could reference either stuffA(ID) or stuffB(ID) ?
Thanks, in advance, for your help