MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > Server side > SQL
Reload this Page update sql to add "1" to a value
SQL Discussions about SQL

Reply
 
LinkBack Thread Tools
update sql to add "1" to a value
(#1)
Old
brange is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 1
brange is an unknown quantity at this point
 
Posts: 25
Join Date: Nov 2007
update sql to add "1" to a value - 03-15-2008

What is the sql syntax to update a value so it increases with 1.

Say that u got votes value=5

and when u run the query it will be 6. and the next time 7?
Reply With Quote

Donate to remove ads.
(#2)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 632
Join Date: Jul 2007
03-15-2008

UPDATE poll SET value++

Not sure about it but I think this would work.
Reply With Quote
(#3)
Old
brange is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 1
brange is an unknown quantity at this point
 
Posts: 25
Join Date: Nov 2007
03-15-2008

update fusion_users set user_votes='++' where user_id=1

and

update fusion_users set user_votes='value++' where user_id=1

didnt work :P

any other suggestions`

edit: Got it :

update fusion_users set user_votes = user_votes + 1 where user_id=1

Last edited by brange; 03-15-2008 at 01:08 PM.
Reply With Quote
(#4)
Old
bevin347 is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 2
bevin347 is an unknown quantity at this point
 
Posts: 52
Join Date: Oct 2007
04-09-2008

tried that... didnt wrk either
Reply With Quote
(#5)
Old
latruwski's Avatar
latruwski is Offline
*Candy L33T*
Legendary User
Rep Power: 7
Reputation: 605
latruwski is a name known to alllatruwski is a name known to alllatruwski is a name known to alllatruwski is a name known to alllatruwski is a name known to alllatruwski is a name known to all
 
Posts: 2,237
Join Date: Dec 2006
Location: Langemark, Belgium
04-12-2008

make a copy of your votetable... so then you have:
votetable
votetable_copy

and then use this query:
Code:
update votetable set votes = (select votes from votetable_copy where name like '%latruwski%') + 1 where name like '%latruwski%';
update votetable_copy set votes = (select votes from votetable where name like  '%latruwski%')  where name like  '%latruwski%';
change votetable to your votetable name and change votetable_copy to the copy you made of the votetable.... change latruwski to the name of the person that is voting...

tested and working ^^

edit: here is what this exacly does:
1) update the votetable and set votes = dummy + 1 for voter latruwski
Dummy is like in VB programs or C++ or whatever just a aid... here the copy of the votetable is the dummy... so the query selects votes from the copied table and adds 1.
2) Now the votetable is updated with +1 vote... now the query updates the copy of the votetable to have the same amount of votes.. so now in both tables latruwski will have +1 vote
3) user votes again and process repeats...


note: this is the first thing that came up to me...

edit: instead of with a whole copy of the votes table you could also add 1 column in the votes table and use that as dummy...


(\_/) Give to people who have been helpfull!
(O.o) This is Bunny. Copy Bunny into your signature
(> <)
to help him on his way to world domination.
Quote:
Originally Posted by Dragon[Sky]
All I have to say is: You're all ungrateful fags.
If you don't like Ascent nor can wait, GTFO. Mangos welcomes you.


Last edited by latruwski; 04-12-2008 at 07:24 AM.
Reply With Quote
(#6)
Old
krava is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
krava is an unknown quantity at this point
 
Posts: 6
Join Date: Apr 2007
07-07-2008

update fusion_users set user_votes = (user_votes + 1) where user_id=1

and it will work. Basically it will just update previous value by adding 1

SQL is really easy :]
Reply With Quote
(#7)
Old
jaymul is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 3
jaymul is an unknown quantity at this point
 
Posts: 58
Join Date: Mar 2008
07-16-2008

OR You Can use PHP And Store The Current Value As A Varible
Then Make Another Varible With

$vote = "Current Value";
$vote1 = $vote + "1";
Reply With Quote
(#8)
Old
krava is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
krava is an unknown quantity at this point
 
Posts: 6
Join Date: Apr 2007
07-31-2008

no need, when he can directly update it via SQL. Most programmers do this mistake and have one overstep that's not needed.
Reply With Quote
(#9)
Old
banviktor's Avatar
banviktor is Offline
Master Sergeant
Rep Power: 1
Reputation: 71
banviktor will become famous soon enough
 
Posts: 131
Join Date: Mar 2008
Location: Hungary
07-31-2008

Quote:
Originally Posted by krava View Post
no need, when he can directly update it via SQL. Most programmers do this mistake and have one overstep that's not needed.
its not a mistake -.-


Please, i need an ncore.us invitation
Reply With Quote
Reply

Donate to remove ads.

Thread Tools

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 On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343