0
votes
1answer
74 views

Getting products with desired attributes

I have a category with products and a set of attributes. Those attributes are "Shape" and "Diameter". When I open a category without applying filters I get products with following query: "SELECT * ...
0
votes
2answers
34 views

Nested Query, I think

I have a table with the following fields and example data: user_id meta_key meta_value ------- -------- ---------- '69' 'usertemplate' 'template1' '69' ...
0
votes
2answers
98 views

How to query multiple rows from EAV table design?

I have a situation where I have to use EAV table design. I have the following two tables. Nodes id name structure_id 1 name 1 7 2 name 2 7 Attributes id node_id ...
2
votes
3answers
286 views

How make this eav query to make horizontal result

The case: tables: product: product_id|name | ------------------------ 1 |iphone 4 | 2 |gallaxy 2 | 3 |blackbery 6 | product_attribute: ...
8
votes
4answers
497 views

SQL query getting exponentially slower

I have a query for a contact messaging system that is getting exponentially slow the more joins I do. The table structure is basically a contact table, and a contact field table. The query joins the ...
0
votes
2answers
107 views

MySQL query from a query result in php

How should I go if I wanted to query a query result in php? Supose I have this.. $result = mysql_query("SELECT * FROM tbl_x WHERE tbl_x.attribute = y"); And now I need to query that $result to ...
0
votes
2answers
92 views

Merging SQL Result rows together

I am working on an EAV storage system for storing schemaless meta data about an object, and am now working on a way to have it searchable, but have most of the processing done by the Database Server. ...
0
votes
2answers
56 views

Oracle, Can't get details from the same column

I have a table named PARAMETER looking like this: ID - number NAME - varchar2 VALUE - varchar2 I have this query witch is 'extracting' the date from the string: SELECT * from PARAMETER where (NAME ...
0
votes
1answer
112 views

How can I write a select query from a table which has columns like product,attribute,value?

I have tables like these - Products: PID,ProductName... - Attributes:AID,AttributeName... - ProductAttributes:PID,AID,Value and the values are ***ProductAttributes*** - P1,A1,V1 - P1,A2,V2 ...
0
votes
1answer
68 views

Database engineering: Many Rows or extra backup columns for a scenario like Extendable Profile Table

I have a decision to make for a database with up to 20,000+ student profiles, Each student profile have more than 120+ Property, In many Enterprise projects like DOTNETNUKE CMS, the used method is ...
2
votes
3answers
158 views

Mysql EAV match row as field or entity's property value

My Mysql database has objects which are defined by an object type which is then joined to set it's properties. And it is based on the Entity Attribute Value model as pointed out by Spencer. The ...
1
vote
2answers
55 views

MySQL: put all values of 1:m into one field?

Assume the following possible models: Model 1: TABLE: book - book_id - name TABLE: book_author - book_author_id - book_id - author_id TABLE: author - author_id - name (a book can have 0 or more ...
0
votes
3answers
2k views

Magento: which catalog_product_flat I need to select from? and what is catalog_product_entity_datetime table?

To know who are the customers needed to be sent the notification mail and know which are the products remain 2 hours before the deal expired, I need to select from wishlist, wishlist_item, ...
2
votes
2answers
2k views

Transact-SQL Query / How to combine multiple JOIN statements?

I'm banging my head on this SQL puzzle since a couple of hours already, so i thought to myself : "Hey, why don't you ask the Stack and allow the web to benefit from the solution?" So here it is. ...
1
vote
2answers
750 views

MYSQL query help (EAV Table)

I have the following query to retrieve customers who answer YES to a particular question "OR" NO to another question. SELECT customers.id FROM customers, responses WHERE ( ( responses.question_id = 5 ...
0
votes
2answers
463 views

SQL - how to select all related rows with external (?) conditions

I have three tables: player [id, name] attribute [id, name] player_attribute [id, player_id, attribute_id, value] each player can have different attributes, some of them don't have any. Now I need ...
2
votes
2answers
430 views

Please Help Me With Mysql Slow Query Analysis

I have this mysql query that I am trying to analyze. It is very slow, the visitor table here is about 50K entries, this query never returns. When I tried an explain statement, I found out that the ...
1
vote
3answers
550 views

SQL flattening & dynamic query question

Firstly, I am not certain this is the best way to handle this AT ALL ... totally open to alternative solutions. Secondly, I feel like I'm missing the obvious ... but I'm still missing it so not to ...
1
vote
2answers
637 views

What is the fastest way to query from a historical EAV database

Standard EAV schema : One column for Entity ID, one for Attribute ID, one for Value ID. Historical EAV schema : Add an additional column(s) for times/date-ranges At run time, certain rows will be ...