Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

How to query from serialized data in table column?
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: How to query from serialized data in table column?
#22354
How to query from serialized data in table column? 12 Years, 5 Months ago Karma: 0
I need to know how to query data from serialized column:
Code:

a:1:{i:0;a:11:{s:10:"tipster_id";s:1:"1";s:6:"league";s:9:"England F";s:9:"opap_code";s:3:"HAB";s:7:"kickoff";s:8:"12-12-11";s:8:"hometeam";s:10:"Manchester";s:9:"rivalteam";s:10:"Birmingham";s:8:"prognosi";s:2:"12";s:7:"apodosi";s:2:"12";s:6:"booker";s:1:"1";s:11:"final_score";s:2:"12";s:7:"outcome";s:1:"1";}}


This is my query
Code:

SELECT `serialized_data` FROM jos_tipster_deltio WHERE `id`='' AND `tipster_id`='' AND `league`='' AND `opap_code `='' AND `kickoff `='' AND `hometeam `='' AND `rivalteam `='' AND `prognosi `='' AND `apodosi `='' AND `booker `='' AND `final_score `='' AND `outcome `=''


The idea is to show "England",HAB etc, but Im only geting error:
Code:

JDatabaseMySQL::query: 1054 - Unknown column 'league' in 'where clause' SQL=SELECT `serialized_data` FROM jos_tipster_deltio WHERE `id`='' AND `tipster_id`='' AND `league`='' AND `opap_code `='' AND `kickoff `='' AND `hometeam `='' AND `rivalteam `='' AND `prognosi `='' AND `apodosi `='' AND `booker `='' AND `final_score `='' AND `outcome `=''



Cheers-Tato
Last Edit: 2011/12/02 23:06 By tatomixes.Reason: forgot something else, sorry
The administrator has disabled public write access.
 
#22365
Re:How to query from serialized data in table column? 12 Years, 5 Months ago Karma: 748
Hello,

"WHERE" clause can contain only columns from tables, in your case from jos_tipster_deltio table. It is not possible to select data by PHP serialized value.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1