in reply to Re: Re: Well Designed RDBMS
in thread Well Designed RDBMS
Searching on attributes (especially single attribute values) should actually be more efficient this way. There's a single type of index and an easy JOIN operation (which you should let the DBMS do for you instead of making two queries).Blob blob_id INT (primary key) blob_data BLOB Color blob_id INT (foreign key to Blob) color_value COLOR Size blob_id INT (foreign key to Blob) size_value FLOAT
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re^3: Well Designed RDBMS
by nothingmuch (Priest) on Apr 07, 2003 at 19:14 UTC | |
by graff (Chancellor) on Apr 07, 2003 at 23:00 UTC | |
by tall_man (Parson) on Apr 07, 2003 at 19:51 UTC |