One to many join with only one result

2006-05-11 Thread Scott Haneda
someone point me in the direction of the correct join to make this happen. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing Li

Re: Returning records in a circle

2006-05-12 Thread Scott Haneda
ogic to deal with cases where the second table has never been inserted into, also when you wrap your record set, it will need to be reset, but I think you get the idea. -- ----- Scott HanedaTel: 415.898.2602 <h

One to many meetting specific conditions

2006-05-25 Thread Scott Haneda
id to get only one record back. I can script this, it is going to be slow, I would like to see how I can do it in SQL. thanks -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com>

Finding records that do not exist

2006-06-19 Thread Scott Haneda
hanks for the pointers. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.c

Aborting a greedy querry from the command line

2006-06-19 Thread Scott Haneda
command line and have it really stop that query? -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives

Importing large data sets

2006-06-22 Thread Scott Haneda
t;265","1424","1962","1131","528","643","6209","99502","61.096163", "-150.093943" Where everything is in quotes and comma sep Can someone tell me, how to rapidly import all this data into

summing of my distance query

2006-06-22 Thread Scott Haneda
his case. To do this at the application level is painfully slow, I can shove the data into a temp table at get it pretty easy, but I thought there would be a simple way. -- --------- Scott HanedaTel: 415.898

Re: summing of my distance query

2006-06-23 Thread Scott Haneda
796 | | 94925 | 46 | 65 | 9.750440 | +-+++--+ That gives me 15 rows, but I only need one, which would be the total of each of the income level columns, distance is not important to me, that's the one row I want back -- ----- Scot

Re: summing of my distance query

2006-06-24 Thread Scott Haneda
of GROUP columns (MIN(),MAX(),COUNT()...) with no GROUP columns is illegal if there is no GROUP BY clause -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato,

Leading zero where strlen < 5

2006-06-26 Thread Scott Haneda
I need to update a column, if the string length is less than 5, I want to add leading zeros to it until it has 5. These are zip codes, I think there are no 00 leading zips, so most should all be four chars long. -- - Scott Haneda

Re: Leading zero where strlen < 5

2006-06-26 Thread Scott Haneda
How about > > UPDATE tbl_Name SET ZipCodes = right(concat('0',ZipCodes), 5) WHERE > length(ZipCodes) < 5 Works, perfect, thanks to both of you. -- - Scott HanedaTel: 415.898.2602

Records in front of and behind another record

2006-06-26 Thread Scott Haneda
to do this with two separate datasets and shove this all back out a browser to the user. thanks -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -

Re: Records in front of and behind another record

2006-06-26 Thread Scott Haneda
is closest, so I would like 5 back, but both are ok, as I can use server side code to determine the closest. -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S

Re: Records in front of and behind another record

2006-06-26 Thread Scott Haneda
; If I am looking for 6, it is not there, I want back 5 and 8, in this case, 5 > is closest, so I would like 5 back, but both are ok, as I can use server > side code to determine the closest. I am thinking UNION and two SQL queries would do this, how is UNION optimized, is it more or less th

Re: Records in front of and behind another record

2006-06-26 Thread Scott Haneda
> OK, that's clear. Sorry about the bervity, ill clear this up below. > Scott Haneda wrote: >> I am thinking UNION and two SQL queries would do this, how is UNION >> optimized, is it more or less the same as running two selects? > > Usually, but a UNION of what two

Re: Leading zero where strlen < 5

2006-06-27 Thread Scott Haneda
me time, so I just ran the update and all was well. Thanks everyone. -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing Lis

Re: automatic timestamp

2006-07-05 Thread Scott Haneda
st timestamp column will be ignored, but the first column will get auto timestamp in a table that has more than one timestamp column. I usually set up two, updated and added, and I always set the added field to NOW() It explains it pretty well in the docs here http://dev.mysql.com/doc/refman/4.

Re: I don't understand why SCSI is preferred.

2006-07-11 Thread Scott Haneda
requests from multiple threads much better. Almost everything, they have not hit that capacity issue yet, they are all generally much smaller that non SCSI. -- ----- Scott HanedaTel: 415.8

Table specific privileges

2006-07-13 Thread Scott Haneda
in phpMyAdmin, so if anyone knows how to do it in there, that would be nice as well. Thanks. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. --

Re: Table specific privileges

2006-07-13 Thread Scott Haneda
lly block > user_B from touching Orders_A > > Knowing how to do this the SQL way would help, ultimately, I have to show a > client how to do this in phpMyAdmin, so if anyone knows how to do it in > there, that would be nice as well. -- ---

Table specific privileges (BUMP)

2006-07-13 Thread Scott Haneda
it in there, that would be nice as well. Thanks. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives

Re: Table specific privileges (BUMP)

2006-07-13 Thread Scott Haneda
each user is allowed to access only a certain one. -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives:

Re: newbie needs help

2006-07-21 Thread Scott Haneda
> I'm going throught some tutorial about uploading and displaying > images files. But the display script isn't working. Here's what I have: I think you may want to bring this to a php based list, not a mysql one. -- -----

Is this privilege case even possible

2006-07-25 Thread Scott Haneda
just not seeing how to make this work. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives

Join with additional table, stumped

2006-08-02 Thread Scott Haneda
reciate it. Maybe select the contents of both tables into a tmp table, and use that as my join table above? -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA

I don¹t have sub queries, can someone suggest alternatives

2006-08-08 Thread Scott Haneda
s show me how to run the same as above but without the sub query? -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing Li

Re: I don¹t have sub queries, can someone suggest alternatives

2006-08-08 Thread Scott Haneda
= p.id WHERE c.user_id = '90' AND p.id IS NULL -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Mass E-mail Options

2006-08-30 Thread Scott Haneda
a little, and sends another chunk. I would also try to unorder the email addresses, so that large groups of yahoo and aol etc emails do not hit the outbound queue at the same time. They tend to look down on that activity, and throttle you back, making it take even longer to get your messages out

Re: Mass E-mail Options

2006-08-30 Thread Scott Haneda
, also, there is the option of simply interfacing mysql and your scripts with mailman, which is really one of the better ways to send mass emails, list serves pretty much have it down these days. -- - Scott Haneda

Cloning or duplicating a record

2006-09-14 Thread Scott Haneda
ing a wildcard tossed me up an error about a duplicate key. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list arc

Re: Cloning or duplicating a record

2006-09-14 Thread Scott Haneda
> how about: > insert into select * from where > > is the primary key an auto sequence? Yes, pk is on auto increment -- ----- Scott HanedaTel: 415.898.2602 <http:/

Re: Cloning or duplicating a record

2006-09-14 Thread Scott Haneda
> how about: > insert into select * from where > > is the primary key an auto sequence? This is what happens when I try: insert into logbook select * from logbook where id = 1; ERROR 1062: Duplicate entry '1' for key 1 -- -

Re: Cloning or duplicating a record

2006-09-14 Thread Scott Haneda
st two sets of fields I will have to manage, which is why I was hoping there was a sneaky SQL way to deal with it. Thanks. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com>

Shifting dates

2005-06-20 Thread Scott Haneda
months to wrap as needed. I would love to do this in SQL, not in application. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailin

Datediff

2005-07-06 Thread Scott Haneda
I am using 4.0.18-standard So I do not have `DATEDIFF`, but I need to ability to do so, anyone know some other simple trick to get days between two dates? -- - Scott HanedaTel: 415.898.2602 <h

Mixing conditions with NOT BETWEEN

2005-07-12 Thread Scott Haneda
rt and end, however, it also finds records where the status is NOT 'active', which I don't want. Swapping the order of the condition seems to give me an error as well, so I am stumped. -- ----- Scott Haneda

Conditions in selects

2005-07-12 Thread Scott Haneda
27; 'yes', 'no') FROM products WHERE id = "75" -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: select based letter

2005-07-14 Thread Scott Haneda
on 7/14/05 3:54 PM, Sebastian at [EMAIL PROTECTED] wrote: > i have a text field column and i want to select the rows based on the > first letter in this column, eg: SELECT field from table WHERE field LIKE 'M%' -- ------

Re: Insert decimals with rounding

2005-07-20 Thread Scott Haneda
---+ | ROUND(1.5467, 3) | +--+ |1.547 | +--+ 1 row in set (0.00 sec) So it would be something like: INSERT into table SET foo = ROUND(1.5467, 3); -- - Scott HanedaTel

Trouble with revoke all

2005-09-01 Thread Scott Haneda
just delete the user and recreate the permissions, but I would like to figure out how to make this work. -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A

Cleaning out old users

2005-09-01 Thread Scott Haneda
? -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Trouble with revoke all

2005-09-02 Thread Scott Haneda
TER, SHOW DATABASES, SUPER, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '' WITH GRANT OPTION This looks pretty much full access to me? -- -

Re: Trouble with revoke all

2005-09-02 Thread Scott Haneda
ies: 4396 Opens: 694346 Flush tables: 1 Open tables: 64 Queries per second avg: 1.738 -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQ

Re: Trouble with revoke all

2005-09-02 Thread Scott Haneda
osely to see if anything's missing in that list, but full > access usually looks like this: > >GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD >'' WITH GRANT OPTION And that is the odd thing, running that giv

Re: Trouble with revoke all

2005-09-02 Thread Scott Haneda
's row in the mysql.user table to have the correct values, > then FLUSH PRIVILEGES (but I'm suspicious something like that is how this > started). I never fiddle direct like that, but there was that fix_privs_table script mysql provided I had to run at one time during an update. -- -

Recommendations on new hardware

2005-09-06 Thread Scott Haneda
nd get what they have, or do you all have better stuff to recommend? If I have left out anything, please let me know, I will be sure to reply. -- --------- Scott HanedaTel: 415.898.2602 <ht

Re: Recommendations on new hardware

2005-09-07 Thread Scott Haneda
e offerings from others. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/

Re: Recommendations on new hardware

2005-09-07 Thread Scott Haneda
me a bit about the 64bit issues and how they affect me? I have someone who may just donate my a xserve, one of the older ones, but still, not a bad piece of hardware at all. -- - Scott HanedaTel: 415.898.26

Total newb at performance tuning mysql

2005-09-07 Thread Scott Haneda
t better. Thanks again, and if there are any questions that would help me get a better answer, please let me know. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, C

Re: Recommendations on new hardware

2005-09-07 Thread Scott Haneda
at Yellow Dog > and see what's involved in getting Linux up and making a 64 bit MySQL > Binary to run under Yellow Dog. Sorry if this is boneheaded here, but are there non g4 bit variants you can run on a G5 if you just want the stability until this is worked out? -- -

Myisam or innodb

2005-09-15 Thread Scott Haneda
table structure of clients databases. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mys

Re: Problems setting up on Mac OS X

2005-09-28 Thread Scott Haneda
ssword I can't get in > afterwards as root. This may be a little out of date, but should still apply, and maybe help: <http://www.newgeo.com/index.ws?id=17> -- --------- Scott HanedaTel:

Re: Problems setting up on Mac OS X

2005-09-28 Thread Scott Haneda
use the startup pane thingy, I never used it, just start it from the command line, or leave it running all the time, wont hurt a thing on a dev machine. -- ----- Scott HanedaTel: 415.898.2602 &

Re: database won't load after machine reboot

2005-10-20 Thread Scott Haneda
it up with the skip grants options, and reset it from there, then start it up normal: <http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html> -- ----- Scott HanedaTel: 415.898.26

Dropped a field, need fix emergency

2005-10-20 Thread Scott Haneda
to run a sql update that will pull the session_key from the backup table, and update the sesssions table with it, based in the field id=id. Can someone help me, I am pretty sure I know what to do, but don't want to risk messing it up. thanks -- -----

Re: Terrible MySQL Administrator

2005-10-20 Thread Scott Haneda
ou deleted the crontab, does not mean it stops: crontab -l That lists the current cron jobs crontab the_cron_file_name Will reload the one you have changed. Of course, you could just send the alerts to nowwhere with something like > /dev/null -- -----

Can conditions be mixed with DISTINCT()

2005-10-24 Thread Scott Haneda
soon" for "2". When I do this, I get zero results returned. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Possible to use a conditional in this UPDATE

2005-10-27 Thread Scott Haneda
is even possible, if so, can someone help me out a bit. Thanks -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For li

Re: Possible to use a conditional in this UPDATE

2005-10-27 Thread Scott Haneda
on 10/27/05 6:34 PM, Scott Haneda at [EMAIL PROTECTED] wrote: > Right now, my update works as follows, and works fine, however, I want to do > a condition to say if products.ship_status = 1 then set > cart_test.shipping_status to 'now' else set it to 'soon' > &g

Re: Possible to use a conditional in this UPDATE

2005-10-28 Thread Scott Haneda
example of the CASE method, I tried and it would error, the docs are a wee bit confusing in that regards. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.

Re: LOAD DATA IF?

2005-11-03 Thread Scott Haneda
0. > So in this case only the 'samsung;dvd;60' row would be inserted. Probably pretty simple to just delete them after youa re done. -- --------- Scott HanedaTel: 415.898.2602 <http://www.ne

Quick split() and data parse

2005-11-03 Thread Scott Haneda
ice = x.xx where id = xxx Is there some way I can do some string parsing on the text field and get to the 3rd item where the passed in shippign_method equals? -- ----- Scott HanedaTel: 415.898.2602 <http://w

Complex select across multiple tables

2005-11-16 Thread Scott Haneda
and ever order item. -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:htt

Aborting slipped keys

2005-11-16 Thread Scott Haneda
me out, but then I have to login again, which is a pain, how can I tell mysql to drop me back to a clean prompt? -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato

Mysql docs

2005-11-16 Thread Scott Haneda
:-) -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Mysql docs

2005-11-17 Thread Scott Haneda
on 11/16/05 7:06 PM, Jasper Bryant-Greene at [EMAIL PROTECTED] wrote: > Scott Haneda wrote: >> Google this: >> subselect site:dev.mysql.com >> And I get mostly non English stuff, limiting to english and I get a whopping >> 37 pages, none of which seem to help me

Re: case insensitive search

2005-11-18 Thread Scott Haneda
to the entered result. -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:h

Re: LIKE problem part II

2005-11-18 Thread Scott Haneda
gest dumping the data, and looking at it in a editor to see if you can see what may be wrong. Also, reimport it back into a new test table and run your tests again. -- ----- Scott HanedaTel: 415.89

SQL_CALC_FOUND_ROWS

2005-11-20 Thread Scott Haneda
1 | | +---++---+-+-+---+---+-- --+ -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Fax: 313.557.5052 <[EMAIL PROTECTED]> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http

Re: Tips for better performance

2005-11-22 Thread Scott Haneda
even > longer. Maybe you are running the default my.cnf file, if so, you will want to change that to be optimized. Please report back your current cnf file. -- ----- Scott HanedaTel: 415.898.2602 <h

Select returning more than I want

2005-11-27 Thread Scott Haneda
(0) AND o.authnet_status IN ('empty', 'failed') 2 rows in set (0.02 sec) -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Fax: 313.557.5052

Min permissions to run `mysqladmin version`

2005-12-09 Thread Scott Haneda
I need to run `mysqladmin version` from a remote host, on the same LAN, what are the min permissions for a user I need to set up to get this data? -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.

Re: Formatting Date to make counts easy.

2005-12-15 Thread Scott Haneda
; (2005-12-11) and for that matter switch the date to us format. Here the > sql statement I am doing now. > > select count(*), date from my_db group by date; select count(*), DATE_FORMAT(date, '%c/%d/%Y') from my_db group by date; -- -----

Merging two tables

2005-12-16 Thread Scott Haneda
can run it and have it not really do anything, kinda like EXPLAIN, but not exactly. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL G

Grand summary

2005-12-27 Thread Scott Haneda
sales tax in order record) Total Orders: $ (grand summary of total in order record) -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General M

Re: Grand summary

2005-12-27 Thread Scott Haneda
on 12/27/05 6:25 PM, Scott Haneda at [EMAIL PROTECTED] wrote: > I have two tables, order and order items. An order can have 1 or more order > items. > > Important data in order is the `id` which is the key to link that order to > the order_items table. > > Quantity of i

Joined delete where records may or may not exist

2006-01-05 Thread Scott Haneda
products.online = 0 and here is the bit that I get stuck on, and where there is no matching products record. -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA

Re: Getting # of days until expiration

2006-01-05 Thread Scott Haneda
TE_ADD(datefield, INTERVAL 30 DAY) from table; -- ----- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Semi-complicated delete

2006-01-11 Thread Scott Haneda
' = 0. There is a user_id that I match on as well, but that does not entirely matter to this question. Deleting where online = 0 is simple, but deleting where there is a lack of a matching product has me stumped. -- ----- Sc

Inner join with left join

2006-02-21 Thread Scott Haneda
ount(oi.product_id) as mycount FROM products as p LEFT JOIN order_items as oi on (p.id = oi.product_id) group by oi.product_id order by mycount; -- ----- Scott HanedaTel: 415.8

Re: Inner join with left join

2006-02-22 Thread Scott Haneda
ated BETWEEN "2005-01-01 00:00:00" AND "2006-02-22 23:59:59") GROUP BY oi.product_id ORDER by qty ASC -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com>

Re: Inner join with left join

2006-02-22 Thread Scott Haneda
ly associate with each product an order and optionally past that to an > order_item. > HTH! I think we are close, thanks ERROR 1120: Cross dependency found in OUTER JOIN. Examine your ON conditions Not sure if this is related to my version of mysql, or something else? --

Re: Inner join with left join

2006-02-22 Thread Scott Haneda
> At 5:08 pm -0800 22/2/06, Scott Haneda wrote: >> I think we are close, thanks >> ERROR 1120: Cross dependency found in OUTER JOIN. Examine your ON >> conditions > >>> SELECT p.id, p.prod_name, sum(oi.quantity) as qty >>> FROM Products p >

Re: Inner join with left join

2006-02-23 Thread Scott Haneda
t;) GROUP BY oi.product_id INSERT INTO prod_report (SELECT id, prod_name, 0 FROM products) SELECT * FROM prod_report GROUP BY id ORDER BY prod_name -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Deleted sock file, how can I recover

2006-03-03 Thread Scott Haneda
can recreate it, and what do I put in it? I can force kill the server and I am guessing it would all come back up ok, but there must be a gentler way? -- --------- Scott HanedaTel: 415.898.2602 <htt

Best way to design one to many queries

2006-03-07 Thread Scott Haneda
;s Suggestions? -- --------- Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://l

Host denied errors

2006-03-24 Thread Scott Haneda
? -- - Scott HanedaTel: 415.898.2602 <http://www.newgeo.com> Novato, CA U.S.A. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: TIMESTAMP field not automatically updating last_updated field

2006-03-30 Thread Scott Haneda
ng what command should I issue to my tables to > correct it? Thanks What veriosn of mysql, timestamp handling has changed from one version to the next? Perhaps you have others in your table, I think only the first is updated, at least, in pre 4.1 days, after that, check the docs for the corre

Hypothetically looking for Kevin Bacon

2008-12-18 Thread Scott Haneda
Hello mysql list, I am looking for a little guidance on a a potential query. I am sure most people have heard of the limited degrees of separation one has to become connected to another person. This is much like the myspace "in your extended network" idea, though I would like my implement

Auto increment without uniquness

2009-03-19 Thread Scott Haneda
I think ideally I would like to create an auto increment column that has no requirement for uniqueness. So if 6 was the last entry, and there are 10 of them, 7 would still be the next, is this possible? I am assuming it is not? I am working in a case where data is needing to be de-normalize

Re: Auto increment?

2009-04-02 Thread Scott Haneda
On Apr 2, 2009, at 12:51 AM, Steve Edberg wrote: At 9:35 AM +0200 4/2/09, Andreas Pardeike wrote: Hi, I have a table 'test' +-+--+--+-+--- ++ | Field | Type | Null | Key | Default | Extra | +-+-

Re: Auto increment?

2009-04-02 Thread Scott Haneda
I read your other replies about the timestamp not working. I still think adding the updated and created fields is a good idea in general, to any table. I have some questions about the below since the original suggestion would not work for you. On Apr 2, 2009, at 12:35 AM, Andreas Pardeike

Re: Now() : SQL syntax error. But why?

2009-04-28 Thread Scott Haneda
We need to see your entire query and the table structure. timestamp fields can have options set to auto update them, where order matters, and only one field can support that feature. Please supply more data. On Apr 28, 2009, at 2:18 PM, Antonio PHP wrote: You have an error in your SQL synt

Information Schema

2009-04-28 Thread Scott Haneda
I have been meaning to find out about this since I moved to mysql 5. In version 4, I never saw the table "information schema". With it being in version 5, I assume it was something only the root users, or a higher level user could see. I now know that it shows up under any account. I wil

Re: Now() : SQL syntax error. But why?

2009-04-29 Thread Scott Haneda
On Apr 29, 2009, at 11:29 AM, Antonio PHP wrote: This is MySQL data structure. - I underlined where it causes the error message. (datetime) `id_Company` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `Name` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL `Revenue` mediumint(6) NO

Re: Now() : SQL syntax error. But why?

2009-04-30 Thread Scott Haneda
Always echo out your SQL string, it will make it a lot more obvious. You want to see the result. I php concatenated string can be confusing at times. Also, you are not escaping your data, so if you had a word of 'stops, here' that would break it as well. So in your case, you very well m

Query log for just one database

2009-05-07 Thread Scott Haneda
I am trying to monitor a specific issue, and I know it is related to only one database. There is a lot of other noise in the logs if I enable query logging. Is there any way to limit query logging to just one database? -- Scott * If you contact me off list replace talklists@ with scott@ *

Re: Help with mysql query, multiple list

2009-05-10 Thread Scott Haneda
What about sub selects. As I see it you only care about the highest and lowest order of results in each list. Sorry, in am on a mobile so I can nit make a test case, and this will be pseudo SQL. Select * from table where start <= (select foo) and ( select foo) ... Also look at the "between

Replication config

2009-05-12 Thread Scott Haneda
Hello, I am confused about repliction setup. Reading a config file, and the docs, leads me to believe this is an either code choice, pick #1 or #2. If that is the case, why would I want to use #1 over #2? My confusion comes from several online references where there is a combination of #1

Re: Replication config

2009-05-13 Thread Scott Haneda
Thanks, a few comments inline below... On May 12, 2009, at 11:11 PM, Simon J Mudd wrote: talkli...@newgeo.com (Scott Haneda) writes: Hello, I am confused about repliction setup. Reading a config file, and the docs, leads me to believe this is an either code choice, pick #1 or #2. If that

  1   2   3   4   >