MySQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMySQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 4th, 2012, 08:47 AM
timhersh timhersh is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2012
Posts: 1 timhersh User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 48 sec
Reputation Power: 0
Run more than one select statement

Hello,

I am somewhat familiar with SQL. I have a website in which I need to update some rows (2000 of them) with different values. I have all the code ready, I had to break apart a excel database and came up with this code. I have searched everywhere and can't figure out to get this to work. When I run the code below I get this error

MySQL returned an empty result set (i.e. zero rows).

Any help would be great



UPDATE `zen_products` SET `products_price`='99.98' WHERE `products_id` = 866080;
UPDATE `zen_products` SET `products_price`='99.98' WHERE `products_id` = 866092;
UPDATE `zen_products` SET `products_price`='99.98' WHERE `products_id` = 866117;
UPDATE `zen_products` SET `products_price`='99.98' WHERE `products_id` = 866131;
UPDATE `zen_products` SET `products_price`='99.98' WHERE `products_id` = 866155;
UPDATE `zen_products` SET `products_price`='114.98' WHERE `products_id` = 866166;
UPDATE `zen_products` SET `products_price`='114.98' WHERE `products_id` = 866167;
UPDATE `zen_products` SET `products_price`='114.98' WHERE `products_id` = 866179;

Reply With Quote
  #2  
Old October 4th, 2012, 12:02 PM
cafelatte cafelatte is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Posts: 1,923 cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level)cafelatte User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 5 Days 16 h 21 m 8 sec
Reputation Power: 377
Code:
Works for me...

DROP TABLE IF EXISTS z_products;

CREATE TABLE z_products (products_id INT NOT NULL PRIMARY KEY,products_price DECIMAL(5,2));

INSERT INTO z_products (products_id) VALUES
(866080),
(866092),
(866117),
(866131),
(866155),
(866166),
(866167),
(866179);

UPDATE `z_products` SET products_price = 99.98 WHERE products_id IN (866080,866092,866117,866131,866155); 
UPDATE `z_products` SET products_price = 114.98 WHERE products_id IN (866166,866167,866179);

SELECT * FROM z_products;
+-------------+----------------+
| products_id | products_price |
+-------------+----------------+
|      866080 |          99.98 |
|      866092 |          99.98 |
|      866117 |          99.98 |
|      866131 |          99.98 |
|      866155 |          99.98 |
|      866166 |         114.98 |
|      866167 |         114.98 |
|      866179 |         114.98 |
+-------------+----------------+

Reply With Quote
  #3  
Old October 4th, 2012, 12:38 PM
r937's Avatar
r937 r937 is offline
SQL Consultant
Click here for more information.
 
Join Date: Feb 2003
Location: Toronto Canada
Posts: 26,380 r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level)r937 User rank is General 47th Grade (Above 100000 Reputation Level) 
Time spent in forums: 3 Months 1 Week 2 Days 7 h 54 m 8 sec
Reputation Power: 4140
Quote:
Originally Posted by timhersh
MySQL returned an empty result set (i.e. zero rows).
updates don't actually return any rows

think about it
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMySQL Help > Run more than one select statement

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap