2005/7/22-25 [Computer/SW/Database, Computer/SW/Languages/Misc] UID:38783 Activity:kinda low | 7/22 When I do SELECT AVG(col) FROM table, where col is integer, it takes
2 minutes and returns a float type. I'm suspecting part of the
problem is that it's doing floating point add? How do I make it
faster? Thanks.
\_ How many rows it is querying over?
\_ about ~2,000,000
...
|
2005/4/8-10 [Computer/SW/Database] UID:37118 Activity:moderate | 4/8 Anyone reccomend a good mysql programming tutorial that goes
beyond the basic select statements ? I would like to be able
to do a distinct on specific column and then do a count of all
the rows that have the corresponding values. thanks --ramberg
\_ select t.col, count(*) from tble t group by t.col;
\_ thanks. --ramberg
...
|
2004/3/25 [Computer/SW/Database] UID:12849 Activity:nil | 3/25 Ok please tell me the pros/cons of mysql vs. postgreSQL. For me
speed is really really important. On the other hand, packaging
(ease of install, consistent commands, etc) is also very important
for development. I've just tried mysql for the first time and I'm
NOT very impressed. The documentation that came with it was outdated
(some of the tutorials didn't work) and it didn't even pass all of
...
|
2001/6/19 [Computer/SW/Database] UID:21575 Activity:high | 6/19 database question
is there a way to have a unique ID span a database as opposed to only a
table... (so that no 2 tables will have records tied using the same
"autonumber")
\_ you could have a skinny table of just ID's and have all other tables
that you care about reference this column. I'm not sure if that
...
|
|