Ask a Question related to PHP Development, Design and Development.
-
Mike Mannakee #1
MySQL limitations
Does anyone know what the maximun number of columns I could put in a table
is?? I can't find it in manual. Like, could I have a table with 200,000
columns?
Mike
Mike Mannakee Guest
-
Limitations of CFParam
I'm curious if someone can point me to any documentation regarding the limits of the <cfparam> tag. More specifically, can it be used to set a... -
Is there conversion limitations?
This is similar to the problem I am experiencing. I have a 29 page manual with high quality Jpegs and Gifs with transparent backgrounds. Why would... -
[PHP] MySQL limitations
http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=mysql+max+columns&btnG=Google+Search Mike Mannakee wrote: -
limitations
Hi, please, can anybody tell me briefly a) how many columns i) a table ii) a view may have b) how many aliases can be used in a SQL statement ... -
frontpage limitations
What are the limitations using frontpage for development given a site with web contents size of 1.0 GB+ -
Brent Baisley #2
Re: [PHP] MySQL limitations
You should rethink your data structure if you want to create 200,000
columns. If you need to create that many columns, chances are you are
going to need to add more periodically. That means changing your table
structure which you shouldn't have to do in a well defined schema. I'm
guessing most of those columns would be empty for any given record.
Try changing your columns to rows and have a column that you use as a
row "label" to qualify what data that row holds. This gives you
virtually unlimited elements you can track, you can add new elements
very easily and it's easier to code. From a coding stand point your
just changing one parameter, the data type field.
Hope that leads you in the right direction.
On Monday, July 28, 2003, at 03:09 PM, Mike Mannakee wrote:
--> Does anyone know what the maximun number of columns I could put in a
> table
> is?? I can't find it in manual. Like, could I have a table with
> 200,000
> columns?
>
> Mike
>
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search & Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577
Brent Baisley Guest



Reply With Quote

