0
votes
0answers
21 views

How to get records out of multiple Tables with messy relationship

Hello! I've been working to get records out of this schema, really isn't working out for me..The relation is so messy PatPlan table's Ordinal field is an INT (1,2) 1= primary insurance 2= ...
1
vote
1answer
37 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 ...
2
votes
1answer
74 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 ...
2
votes
2answers
35 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 ...
0
votes
0answers
82 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 ...
0
votes
1answer
19 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 ...
0
votes
2answers
40 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`) ) ...
0
votes
2answers
128 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 ...
0
votes
1answer
75 views

Why need relation-table from entity to same entity

I got a roo-script-line like this: field set --class Member --fieldName invitedby --type Member --cardinality ONE_TO_MANY Hibernate require a table named member_invitedby with column member and ...
0
votes
1answer
33 views

Doctrine2 Relation with 3 entities

I have 3 entities: User Role Company Typically one User has one Role and many Companies. I have set up this successfully. But how would I set up the relations if a User has a Role depending on the ...
-1
votes
1answer
42 views

MySQL: One Table referencing to multiple ones [closed]

lets start with an example: article ------- id exercise ------- id comment ------- id Article and Exercise are two different tables. There is no possibility of combining them in one table. I want ...
0
votes
1answer
64 views

Mysql database selecting with relation

I have this table that I hold userlist for my msn application. There's another table for the friendship where it has two foreign keys from userlist. user: id, name, online, ip... friend: id1, id2 I ...
2
votes
1answer
467 views

Writing a query in strictly relational algebra (AS IN NOT SQL/MYSQL)

So here are three relations: Table Members Members(member_id, name, city, state) where member_id is the primary key Table Borrowed Borrowed(borrow_id, lib_id, member_id) where borrow_id ...
1
vote
2answers
255 views

MySQL dynamic table name relation

I have 3 MySQL tables: cars, users and visitors. Table cars can be related to table users or table visitors. Tables users and visitors have different table structures. I would like to join all these ...
-1
votes
1answer
65 views

Database Relations Problems [closed]

I have a project and I need to make a relation between two columns in my DB. I need to make it one to many because the name of the "driver" (you will understand in the Query) can repeat several times ...
0
votes
3answers
259 views

MySQL One-to-Many: Select where only one relations exists

My Tables: CREATE TABLE `binary` ( `binaryid` int(15) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`binaryid`) ); CREATE TABLE `binarycollection` ( `binaryid` int(10) unsigned NOT NULL, ...
0
votes
1answer
34 views

Mysql ManyToMany relation log

I have a table, for example orders(id, name, product, ... ) and i have log table for it in which trigger writes: `orders_log(id, ts, order_id, name, product, ...) Table orders has a ManyToMany ...
3
votes
1answer
315 views

what is the advantage of relationships between tables in sql?

I made three tables. Table1=users.And the column names are userid (auto_increment) and username. Table2=hobbies. column names are hobbyid (auto_increment) and hobbyname. Table3=users_hobbies. column ...
0
votes
1answer
188 views

Mysql, max date form each relation

I have 2 tables: money_change: id_change | id_factor | d_change | date --------------------------------------------- 1 5 0.10 2012-06-07 2 6 0.11 ...
0
votes
2answers
775 views

utf8_bin vs. utf_unicode_ci

My table Website Website_Name//column name Google Facebook Twitter Orkut Frype Skype Yahoo Wikipedia I i use utf8_bin collation then my query to search wikipedia in Website is Select Website_Name ...
1
vote
1answer
341 views

Efficient insertion/update of mysql m:n relations

I am developing a HTML5 multiplayer game, where I have a m:n relation between tables "keyword" and "model", like the following image shows: keyword.id and model.id are auto_increment unsigned int ...
1
vote
2answers
274 views

1:n relationship and sql query

I have two tables entries(id,name,desc,cat_id) and categories(id,name,parent) entries.cat_id and categories.id are FK and between entries and categories there is a 1:n relationship. So how to get ...
0
votes
3answers
61 views

Delete entry without deleting related entries mysql innoDB

I have a database where the users have different projects. A user can have multiple projects but a project can have only one user. I get a problem if i'm going to delete a user without deleting his ...
2
votes
3answers
349 views

MySQL query makes server crash?

In my MySQL database I have two tables: 'orders' and 'orders_lines'. Orders contains info about the customer, order date, and so on. Orders_lines contains data about the oredered products, like ...
0
votes
1answer
121 views

Looking to combine two queries

I am trying to combine two queries into one and I hope you can help me. The query gets me list of entries (zip codes) that are within a certain distance. That works just fine. ($lat, $lng, $zip and ...
2
votes
2answers
62 views

Optimal databasesystem for filters

I am building a website that implements filters that can be applied to a dataset. Allow me to explain these filters. In this case it will be a website with houses. Number of rooms: 2 or less ( ...
0
votes
1answer
2k views

YAML Mapping exception on Doctrine 2

I created my database and tables using phpMyAdmin. I setup the relations there aswell. I then wanted to get Doctrine 2 to create the YAML files for me by do this command: php doctrine ...
0
votes
3answers
304 views

MySQL relations for country region and town tables

I am trying to figure out the best method to relate country, region and town tables. On my website I want the user to be able to just enter a town. Then optionally country and region, both of which ...
0
votes
1answer
563 views

How to select from database with relations?

I have database with schema on picture below and I need to select everything related to one row (one id) of [letaky]. That means the related [zamestnanci], every related [obsah] and every [knihy] in ...
1
vote
3answers
427 views

What are the advantages of explicitly setting up relationships inside of a database

When your creating a database schema and come up with all the foreign keys. What are the advantages of explicitly defining them as such in the database? Are there advantages? If it's reliant MySQL ...
0
votes
2answers
476 views

how to dump mysql table relations in PHP

I searched a lot but could not find a way to dump table relations like one-to-one, one-to-many vs in PHP. Is there a way to handle this issue in PHP? A result might be: array( 'tableA' => ...