A relation on sets S1, S2, ..., SN is any subset of S1 x S2 x ... x SN, where 'x' denotes the Cartesian product. In other words, a relation over N sets is any set of ordered N-tuples over the N sets.

learn more… | top users | synonyms

0
votes
1answer
14 views

Is there a way to export custom relationships (many to one and many to many) from SugarCRM?

I have a custom relationship (many to one) that I would like to export from one SugarCRM instance to another. All of the other module data has come across okay but the relationship data does not seem ...
0
votes
2answers
47 views

Relationship between fields - classes OpenErp

I need to relate a field first declared on product.py to a custom module i'm making. The fields are in the product.product class as follows: _name = "product.product" _description = "Product" _table ...
0
votes
4answers
338 views

Laravel Cities relation foreign key

Im really new to laravel, and im sure im doing something wrong I have 2 tables. Cities And users_metadata My cities table look like this id | City | 1 | New York | 1 | Los Angeles | ...
0
votes
0answers
10 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 ...
2
votes
1answer
18 views

Cartesian product table for an algebraic relation in R

I have one or two numerical vectors, e.g. x <- c(1, 2, 3). I want to create a graphical representation of the relation aRb, where R is any algebraic formula such as a + b (used in the example ...
0
votes
3answers
31 views

Link relation query - can I create a javascript relation as well as css?

I have this statement in my webpage that formats a page especially so they can view it better with a small netbook screen: <link rel="stylesheet" media="only screen and (max-height: 750px)" ...
0
votes
2answers
27 views

Relation in Py2neo with Neo4j

How can i get the end node of the relation. For example: rels = graph_db.match(start_node=user, rel_type="is_post_owner") So how can i get all the end nodes of the start node user. Regards, Samuel ...
0
votes
1answer
22 views

Is it a good idea to model object relations in a program similar to the real-life ones?

Question inspired by a comment to my answer here: http://gamedev.stackexchange.com/questions/55251/separate-classes-communication Well, if you read the question and answer from the link, there's not ...
1
vote
0answers
42 views

How to bound primary key to custom ON condition in Yii Relations?

The problem: How to bound primary key to custom relation query? Context, what for: One Source can relate to several different Modifications (MANY_MANY), each modification relate to some Product ...
-3
votes
0answers
17 views

What problems could arise with datadase indexing? [closed]

So I have come up with only a few things that would be an issue when having indexes on tables. The first would be that if too many indexes are created then it would make searching slow and ...
0
votes
2answers
198 views

Retrieving dependent/parent from within domain entity method

How would one go about retrieving a dependent/parent object from an entity. $person->getAddress(); This should retrieve the Address object for that person from the database and return it as an ...
0
votes
1answer
27 views

Django model ManyToMany id paradigm

i am new to Django, and i having trouble understanding how the model.ManyToMany works. I have this model: from django.db import models class Health_plan(models.Model): a = models.IntegerField () ...
0
votes
2answers
67 views

Yii how to count related models (getRelation with params)?

I have a HAS_MANY relation called "relationName", So I can get all related models using $model->relationName; or using $model->getRelated('relationName'); I can also get a subset of ...
1
vote
1answer
31 views

Selecting a record based on user input in mysql

I have three tables games (ga_id , game) , equipments (eq_id, equipment), games_equipments (ga_id, eq_id). The ga_id references the that ga_id of the games table and the eq_id references the eq_id ...
0
votes
1answer
24 views

TYPO3 mm-Query giving me no output and no error

I've tried to output some data from my two linked tables and had a look at all examples I could find, but I'm still not getting any results. (Note: I've tried exec_SELECTquery on either table and it ...
0
votes
1answer
29 views

CoreData count records of TWICE related entity

I have three Entities: Institution, Course, Student An Institution can have many Courses, a Course can have only one Institution (1 - many) A Course can have many Students, a Student can join many ...
0
votes
1answer
57 views

SharePoint Advanced List Relations

Ok - so here's the preface. I realize that SharePoint isn't really the best solution for this, and if I have to use SharePoint, then coding this would be preferable. However, my wings are clipped ...
2
votes
1answer
53 views

Propel ORM add many to many relation data in single save

I have a Post and category model have a relation on many to many with category_post table in real scenario i want to a add a post with multiple existing category id for Example post have ...
0
votes
1answer
24 views

Django query - Sort by count of pair of generic relationship fields

I have a model, Tic, that has a generic foreign key relationship with other models in my application. class Tic(models.Model): user = models.ForeignKey(User) content_type = ...
2
votes
2answers
33 views

Single Relation M:N for unknow element number

Currently I have an article with various M:N relations with other elements, the problem is that these elements can and will grow up and not want to have that amount of tables in my database. which ...
1
vote
1answer
83 views

Symfony 1.4: Find records with no related values

I have two tables with related with a many-to-many relationship. I am trying to find all of the rows that have no related values. Here's an example: Table 1: Categories Table 2: CategoryItems ...
0
votes
0answers
50 views

Edit first_name data type field in Sugarcrm

There's the first_name data type, accessible from the Studio in SugarCRM. This field comes with a "Mr. Mrs. ..." etc selectable field, then the text field for the actual person name. I need a ...
27
votes
7answers
6k views

How to return an empty ActiveRecord relation?

If I have a scope with a lambda and it takes an argument, depending on the value of the argument, I might know that there will not be any matches, but I still want to return a relation, not an empty ...
0
votes
0answers
31 views

Decomposing a relation into 3NF, how do separate the relation?

Given a relation, R = ABCDE and this set of FD's: AB > C DE > C B > D I'm able to find the candidate key ABE (correct?) I need to decompose this relation R into 3NF. What I don't ...
0
votes
1answer
18 views

Many2Many Relathionship. Mapping error?

im having a problem with a many2many relation. Im using Mysqk, with EclipseLink JPA 2. Ive been reading a lot, and cant figure out why the Join Table never updates!! I have more Many2many Relation in ...
1
vote
1answer
94 views

Creating an ERD and relational model design

I need to design a small database for class, I used the following ERD model: http://imgur.com/OSYwHp6 and got the following relational model: http://imgur.com/RuMYgHA by following a similar class ...
1
vote
0answers
73 views

Database hierarchy, aggregation, relations in LibreOffice Base

I am working on a homework project where we design a website for a store, and I have been assigned the database. This is my first database attempt. I am using LibreOffice Base for the design, and ...
0
votes
2answers
116 views

With Symfony 2.2 and Doctrine 2.2.* I can't save manyToMany relations with cascade: persist

I try to use Doctrine casecade feature tu automagicaly save relations between two entities, and it does'nt seem to work. I've made a demo here : https://github.com/asakurayoh/demo_bug_doctrine So I ...
0
votes
2answers
72 views

Core Data one-to-many relation won't take values, how do I have do use the accessor methods?

I want to save a method, which has some relations to other Entities. The approach and background are to-one relations, but the method should have be able to have several tipps and examples. I already ...
0
votes
2answers
35 views

create a table relation on itself in mysql

I have a table like so: CREATE TABLE `jngi_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `Name` varchar(50) NOT NULL, `parent` int(11) NOT NULL, PRIMARY KEY (`id`) ) ...
2
votes
1answer
159 views

Normalisation into BCNF

I have a relation looks like: R = (X,Y,C,D) and functional dependencies: FD = {XY -> CD, YC -> D, D -> X} I found out that the candidate keys are XY, YC, YD. In this case, I have 3 ...
0
votes
1answer
123 views

How to find the relationship between tables in already existing database in MySQL Workbench?

I basically do not know how to see the relation between tables in my database in a nicely connected with arrows form.
0
votes
3answers
54 views

I can't find any primary key in some of my relations

Alright so I read from somewhere Every table should have a primary key But some of my tables don't seem to behave! I'd also like to know whether the relations as I'm using are fine or I need ...
1
vote
1answer
33 views

Automatically creating a OneToOneField when accessed

I have two models: class Profile(models.Model): # (...) settings = models.OneToOneField('Settings', null=True) # (...) class Settings(model.Model): # (...) Is there a way to create ...
2
votes
1answer
119 views

Is a primary key on a many to many relation correctly normalised?

I have a many to many table (TableAB) which simply holds a foreign key to table A and a foreign key to table B. It always feels like I should also add a primary key column to the table itself, and ...
1
vote
1answer
34 views

Runtime of Recurrence relation [closed]

Just had this on a quiz: T(n) = 4T(sqrt(n)) + 5 I simplified it using substitution and got F(k) = 4F(k/2) + 5 Using the master theorem I guessed it was O(logn). Is this accurate?
0
votes
2answers
42 views

Relational algebra for one-to-many relations

Suppose I have the following relations: Academic(academicID(PK), forename, surname, room) Contact (contactID(PK), forename, surname, phone, academicNO(FK)) This is not a homework, I just want to ...
0
votes
1answer
23 views

Ontology Management Program supporting Weighted Relations between nodes

I am looking for ontology management services which can handle "bi-relation" for example, suppose that there are nodes "Tiger" and "Lion" We want to describe quantitive relation between the nodes : ...
0
votes
2answers
56 views

Searching by related model field

I know there are plenty of topics on this but I searched&tried so many and it is still not working. I have tables: Team and Worker. Any worker can be assigned to a Team. So at the Workers Manager ...
0
votes
1answer
128 views

F test for multiple paired samples

I have two sets of data: Set1 and Set2. For each set we have the same variables A, B, C, D, E. I want to do the F-test to understand whether the following relationships are simultaneously true: ...
0
votes
1answer
33 views

Composition, belongs_to

I have a 1:n (person to city) relationship Model Person: belongs_to :city composed_of :city, :mapping => %w(city_name city) Model City: has_many :people Now it should be possible to set ...
0
votes
2answers
105 views

relation between categories table and factories table Codeigniter

I am wordking with CodeIgniter I have a database with three tables called categories, factories and factorycategories in my categories table i have the following rows: idCategories Categorie ...
-4
votes
1answer
37 views

Calculating number of groups [closed]

Given number of persons and related persons , how to find number of groups in C or CPP? Example : Let we are given 5 persons , namely 1,2,3,4,5 and 1 is friend of 2 , 2 is friend of 3 , 1 is friend ...
0
votes
1answer
109 views

Generating an array of records from an Activerecord::Relation in Rails

Fairly new to Rails, building an e-commerce system. I have a tree-like structure of products -> skus -> line_items where: class LineItem < ActiveRecord::Base belongs_to :sku belongs_to :cart ...
0
votes
1answer
106 views

tastypie: filter many to many tables with multiple, ANDed values

I have two tables (Movie and Genre) that are connected with a many to many relation using a crosstable (MovieGenre). My models.py file looks like this: class Genre( models.Model ): sName = ...
1
vote
1answer
642 views

sqlalchemy relation through another (declarative)

Is anyone familiar with ActiveRecord's "has_many :through" relations for models? I'm not really a Rails guy, but that's basically what I'm trying to do. As a contrived example consider Projects, ...
0
votes
2answers
51 views

Java-EE-6: How to store a boolean in a @ManyToMany and @ManyToOne relationships?

I am working on a data model that basically consists of users and documents. Now everytime a new document is added, there should be a flag that identifies a document as "unseen" as long as the ...
3
votes
1answer
2k views

Many to Many, with another column

I'm wondering if anyone has faced this issue. Let's assume I have two tables: products and carts (related many to many). Now, joining table has additional column - amount (how many products of ...
1
vote
2answers
2k views

MANY_MANY relation does not work for me

I am now discovering the Yii framework and doing it by trying to develop a simple application which allows to create Leagues and assign Players to it. The relationship between these is many to many (a ...
3
votes
1answer
130 views

What is the purpose of ActiveRecord::Relation#bind?

Just out of curiosity - I was reading the docs of the Relation::QueryMethods module and found that method: def bind(value) relation = clone relation.bind_values += [value] relation end Does ...

1 2 3 4 5 6