| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: I need a 4D (may be 5D or 6D) data space
Don't think of rows/cols as two dimensions. Here's a MySQL table that
looks up descriptions in a two-dimensional space. It should be obvious
how to extend it to an arbitrary number of dimensions.
CREATE TABLE IF NOT EXISTS brlewis_map (
x integer NOT NULL,
y integer NOT NULL,
descr varchar (255) NOT NULL,
PRIMARY KEY (x, y))
One of the demos at
http://www.webappcabaret.com/brl/p/brlewis/index.brl
uses this exact table.
-- <brlewis@[(if (brl-related? message) ; Bruce R. LewisReceived on Wed Jan 09 2002 - 08:18:15 CST
"users.sourceforge.net" ; http://brl.sourceforge.net/
"alum.mit.edu")]>
I rarely read mail sent to brlspam_at_yahoo.com
![]() |
![]() |