0
votes
0answers
13 views

How to apply join on differenr field name in grocery crud

I have two tables with these schema: users(id, name, email) user_details (user_id, physical_address, other_info) i want to join both table with in grocery crud on id and user_id like ...
0
votes
2answers
51 views

SQL: how does parallelism of a join operation exactly work in a “shared nothing” architecture?

I'm currently reading a book about parallelism in a DBMS and I find it difficult to understand how parallelism works exactly in the join operation. Suppose we have 10 systems, each system has each ...
0
votes
1answer
207 views

join between table and sum function ==> return wrong value

I have a dynamic search query with join multiple tables ,for show sum and count of some fields.but sum function return wrong value.it cause to joins.but i don't know what should I do,just i know if ...
3
votes
2answers
75 views

Use own tuples in JOIN statement

is it possible use own tuples as a source for an JOIN statement? Here is an example of what I'm looking for: SELECT u.id, u.name FROM users u INNER JOIN {{tupl1},{tupel2},{tupel3},...}
0
votes
2answers
2k views

Lossless Join Property

Can someone please explain to me what is meant by the lossless join property in a relation schema? Is it the ability to maintain the semantics of information/data during the decomposition of ...
0
votes
1answer
379 views

ActiveRecord::Relation cannot use named association in where clause of join

How do I use a named association in the where clause associated with a join? class Pet < ActiveRecord::Base belongs_to :owner end class Owner < ActiveRecord::Base has_many :dogs, ...
1
vote
2answers
617 views

How to access joined table attributes in Rails3?

I am having trouble accessing the attributes of a join in Rails3. There is two models/tables : Place and Address. One place can have many addresses (i.e. a specific street address, a "corner of" ...