Is the below a good or bad idea? I have multiple tables for different node types. Each table has an auto-increment ID for that nodeType. So that every node type has a truly unique ID each nodeType would have a range of IDs. eg.
table 1, ID auto increment from 0-1000000000
table 2, ID auto increment from 1000000000-2000000000
table 3, ID auto increment from 2000000000-3000000000
I know the above could also be solved with an extra nodeType table and a JOIN, however other than the fact that there would be a limit to the ID ranges is the above a bad idea?.. thanks to any responders.