SitePoint Sponsor

User Tag List

Results 1 to 2 of 2

Thread: How to increase a number in mysql database by one?

  1. #1
    SitePoint Zealot
    Join Date
    Jun 2006
    Posts
    186
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to increase a number in mysql database by one?

    Hello, this is probably a simple question, just not sure what to search for in order to find the answer... What php statement can I use to increase a number in a mysql database by one?

    Thanks in advance!

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,462
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    run this query:
    Code:
    update daTable
       set daColumn = daColumn + 1
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •