best way to...

This is a discussion on best way to... within the PHP Language forums, part of the PHP Programming Forums category; hi all, I want to decrement all the rows in a column that contain a number that is bigger then ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-14-2003
Stijn Goris
 
Posts: n/a
Default best way to...

hi all,

I want to decrement all the rows in a column that contain a number that is
bigger then one defined by me.

Is there some function in mysql or php that makes this task easy or do I
have to check row per row and if true decrement the row?

kind regards
Stijn


Reply With Quote
  #2 (permalink)  
Old 11-14-2003
Justin Koivisto
 
Posts: n/a
Default Re: best way to...

Stijn Goris wrote:

> I want to decrement all the rows in a column that contain a number that is
> bigger then one defined by me.
>
> Is there some function in mysql or php that makes this task easy or do I
> have to check row per row and if true decrement the row?
>
> kind regards
> Stijn
>
>


Not sure if this is what you're looking for, but by the sounds of it,
you can do this with a simple update query...

UPDATE table_name SET field_name = field_name -1 WHERE field_name >
my_number

--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

Reply With Quote
  #3 (permalink)  
Old 11-14-2003
Justin Koivisto
 
Posts: n/a
Default Re: best way to...

Justin Koivisto wrote:

> Stijn Goris wrote:
>
>> I want to decrement all the rows in a column that contain a number
>> that is
>> bigger then one defined by me.
>>
>> Is there some function in mysql or php that makes this task easy or do I
>> have to check row per row and if true decrement the row?
>>
>> kind regards
>> Stijn
>>
>>

>
> Not sure if this is what you're looking for, but by the sounds of it,
> you can do this with a simple update query...
>
> UPDATE table_name SET field_name = field_name -1 WHERE field_name >
> my_number
>


Once again, I should have checked for newly posted messages before
replying.... ;)

--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

Reply With Quote
  #4 (permalink)  
Old 11-14-2003
Stijn Goris
 
Posts: n/a
Default Re: best way to...


"Ian.H" <ian@WINDOZEdigiserv.net> wrote in message
news:pan.2003.11.14.18.04.37.361478@hybris.digiser v.net...
> On Fri, 14 Nov 2003 18:57:25 +0100, Stijn Goris wrote:
>
> > hi all,
> >
> > I want to decrement all the rows in a column that contain a number that

is
> > bigger then one defined by me.
> >
> > Is there some function in mysql or php that makes this task easy or do I
> > have to check row per row and if true decrement the row?
> >
> > kind regards
> > Stijn

>
>
> $sql = "
> UPDATE database.table
> SET field = field - 1
> WHERE field > '$max'
> ";
>
>
> Untested.. but should work =)
>
>
>
> Regards,
>
> Ian
>
> --
> Ian.H [Design & Development]
> digiServ Network - Web solutions
> www.digiserv.net | irc.digiserv.net | forum.digiserv.net
> Programming, Web design, development & hosting.
>


thanks,

I didn't know sql could do those operations.

thanks


Reply With Quote
  #5 (permalink)  
Old 11-14-2003
Disco Plumber
 
Posts: n/a
Default Re: best way to...

Justin Koivisto (31.596% quality rating):
>
> UPDATE table_name SET field_name = field_name -1 WHERE field_name >
> my_number


Note: if field_name is a unique field or key, you'll need to add an
ORDER BY clause to make sure this works.

/joe
--
In City Cafe, Brian Culver celebrates with the nameserver from Dramatech,
and then emasculates the lethal, aggravating frat house from the Deck(tm).
In 101, Keith links to the website of Kramer for the fiber channel, and
then stimulates a gombizler. Scott Watkins felches Taco ... [tape runs out]
Reply With Quote
  #6 (permalink)  
Old 11-14-2003
Andy Hassall
 
Posts: n/a
Default Re: best way to...

On Fri, 14 Nov 2003 18:45:06 +0000 (UTC), Disco Plumber
<scag@moralminority.org> wrote:

>Justin Koivisto (31.596% quality rating):
>>
>> UPDATE table_name SET field_name = field_name -1 WHERE field_name >
>> my_number

>
>Note: if field_name is a unique field or key, you'll need to add an
>ORDER BY clause to make sure this works.


But watch out if you're still using MySQL 3.x, as it doesn't support ordered
updates:

mysql> insert into test values (2), (3), (1);
Query OK, 3 rows affected (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 0

mysql> update test set id = id + 1;
ERROR 1062: Duplicate entry '3' for key 1
mysql> update test set id = id + 1 order by id;
ERROR 1064: You have an error in your SQL syntax near 'order by id' at line 1

--
Andy Hassall (andy@andyh.co.uk) icq(5747695) (http://www.andyh.co.uk)
Space: disk usage analysis tool (http://www.andyhsoftware.co.uk/space)
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 07:03 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0