0
votes
2answers
76 views

Propel and related data using FOSUserbundle

I'm using FOSUserBundle and I've created a Message table with two columns, that are relating to the User from FOSUserBundle. I want to get messages and information about the author using one query. ...
0
votes
0answers
53 views

Insert values into a table from multiple tables

I am trying to insert values into a table from multiple tables, the tables that i have looks like this. Meter_detail meter_id(primary key) meter_no. meter_name Parameter_details ...
2
votes
1answer
93 views

Mysql query optimisation foreign keys

I have a master table and a child table with one foreign key. When I join between these two tables and use explain statement to analyse the performance I am getting the explain output as "Type=ALL" ...
0
votes
1answer
85 views

No Foreign Keys exception with Ormlite Join

I'm having problems getting a join to work, the two table definitions are as follows: public class Student { @ForeignCollectionField(eager = true, columnName = STUDENT_INSTANCE_COLLECTION_NAME) ...
2
votes
2answers
201 views

SQL Database normalization and foreign key practices (varied/blank keys?)

I'm designing a database for my company to manage business loans. Each loan can have guarantors, which can be individuals or companies, that serve as financial backing in case the borrowing business ...
0
votes
2answers
43 views

join clause not showing all results

this is a very weird issue. I have 3 tables, all with key relations on agent_id. Now this query : select DATE_FORMAT(created_on,"%d/%m/%y") as date from logs where agent_id = "18" and log_status="1" ...
0
votes
2answers
53 views

What's wrong with this SELECT Statement?

I'm getting this error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' JOIN shirts_link ON ...
1
vote
1answer
121 views

Multi-Table Selecting with Count of Foreign Key Referred Rows

I've tables related with foreign keys and i try to prepare a view to compose them via inner joins on SQL Server. I don't know if using inner join's is the way, but I can't get what I want anyway. ...
0
votes
1answer
67 views

MySQL - join 3 tables based on criteria

Please help a MySQL newbie. I have 3 tables: table users-username is primary key, table song - idsong is primary key and second column is title, third table purchased with column "ref" as primary key, ...
2
votes
5answers
491 views

Performance of string comparison vs int join in SQL

It's accepted that searching a table on an int column is faster than on a string column (say varchar). However, if I have a Shirt table with a Color column, would it be more performant to create a ...
3
votes
1answer
61 views

SQL Query, how to get data from table but only when it was inserted in another table

Well, I didn't know how to explain this one on the title, so I'll be clearer here. I have a couple of tables: TiposDeCatalogo: PK IdTipoCatalogo (int) IdVendedor (int) Nombre (string) Descripcion ...
1
vote
1answer
78 views

doctrine dql custom join with on

i have tables witch have no foreign key and no relation in doctrine but logically they are related by some fields. how can i join them with DQL and Query over them. can i use ON between their fields?
0
votes
3answers
903 views

Inner join with multiple tables

I have these four tables: PRODUCTS --------- PRODUCT_ID PRODUCT_TITLE (other fields) COLORS --------- COLOR_ID COLOR_NAME MATERIALS --------- MATERIAL_ID MATERIAL_NAME IMAGES --------- IMAGE_ID ...
0
votes
4answers
87 views

Join query between 2 tables, the first with several fields refering to the same fields in the other

I have to build an application on an existing SQL database and I came upon this situation. There's a table (call it T1) where several fields reference values from another table (T2), which basically ...
2
votes
1answer
968 views

Understanding Relationships & Foreign Keys in Mongoose

In MongoDB/Mongoose, how do I define a relationship? I think there are a few ways I've seen, but I'm not sure I understand the differences or when do I use which. I am using Mongoose 3 I've defined ...
0
votes
1answer
80 views

Avoiding navigation properties (joins, relations)

Imagine I have this class public class Case { [Key] [DataMember] public int CaseId { get; set; } [DataMember] public string Title { get; set; } [DataMember] public ...
0
votes
2answers
78 views

SQL: View Full Name From User ID (Send To / Send From)

I have the following tables: Students StudentID UserID FirstName LastName 1 1 John Doe 2 3 Peter Pan 3 5 ...
0
votes
2answers
104 views

SQL Server Subquery for 2 Columns Optimal

I have a parent table with two foreign key references to a child table. I am trying to come up with optimal TSQL (SQL Server 2008) that will "pivot" the child column into a row. The table structure ...
0
votes
2answers
67 views

Retrieve two different fields for a joined table with repeated foreign key

I have a table that reuses a foreign key and I'd like to join a different value for each case. The first table describes a drug dosing activity. It has ID's that point to drugs, routes, vehicles, ...
2
votes
2answers
2k views

Multiple Foreign keys to a single table and single key pointing to more than one table

I need some suggestions from the database design experts here. I have around six foreign keys into a single table (defect) which all point to primary key in user table. It is like: defect ...
0
votes
2answers
143 views

Join two tables containing two foreign keys

I'm pretty amateur when it comes to writing SQL, so maybe this is an easy one for someone? I have two tables as follows: Table1 - DeviceName, DeviceID, AlternateID MyPhone, 333, AAA HerPhone, 444, ...
0
votes
1answer
92 views

SQLAlchemy: can't understand this one2many relationship with composite keys

I have an SQLAlchemy model like the one below, and at first it didn't work (problems with the join, and then expecting a scalar instead of a list). I "fixed" it in the included version, but I really ...
2
votes
2answers
79 views

Easy way to find out if there is no foreign key link from table A to table B?

Lets say I have table A, with an id column, and table B with an A_id column. A_id is a foreign key of id. Now, if I want to get all id's from A of which B has a foreign key link, I can do SELECT id ...
2
votes
3answers
2k views

Join table twice - on two different columns of the same table

I have a very confusing database with a table that holds two values I need in a separate table. Here is my issue: Table1 - id Table2 - id - table1_id - table3_id_1 - table3_id_2 Table3 - id - value ...
2
votes
5answers
83 views

Trivial MySQL Query: WHERE (…) AND (…)

I must be having a case of the Fridays... Suppose I have the following tables and data: +------------+ | Park | +------------+ | Cape Cod | | Blue Ridge | | Ice Age | +------------+ ...
2
votes
1answer
107 views

MySQL limiting by foreign key

I have a complex object I'm trying to store in the database. I feel that for every case where I'd like to limit possible values, I should store values on a table and have a foreign key constraint. I ...
0
votes
4answers
187 views

SQL Query - Multiple Joins on Same field

I need assistance building this query where i need to select different values from same table but different Unique Keys. To elaborate more ill provide the below example: I have 2 tables: Issues ...
2
votes
1answer
269 views

In sqlite3 reference(foreign key) a column of a table by join of two columns in other two tables

I am using sqlite3 in python. I have two tables with id column in each. These id columns in the tables can have different values. I want to create a new table with column id which can contain only the ...
2
votes
2answers
750 views

Can you use INNER JOIN with a primary key?

I have two tables with a one-to-one relationship. Table1 has a composite primary key consisting of about 4 columns. Table2's foreign key is set to Table1's primary key. When I try the following ...
1
vote
1answer
2k views

SQL Join Query multiple One-to-many? or many-to-many?

Hopefully this will be an easy question! I have two tables, a 'client(s)' table and an individual 'names' table. The basis is that a client can have one or two(max) names. I structured them like this ...
1
vote
3answers
440 views

SQL foreign key on primary key or unique column

Suppose I have two tables, table A and table B, and that table A has the following columns: COLUMNS (id INT PRIMARY KEY, name VARCHAR(200) UNIQUE) I want to create a column in table B which ...
0
votes
1answer
213 views

Mysql - Wordpress: list custom posts with more than one metadata value

In wordpress, custom posts are held in the wp_posts table, and their ID is referenced in another table wp_meta with the following columns post_id, meta_key, meta_value Let's say I have a recipe ...
0
votes
4answers
103 views

Joining 2 or more tables in php-mysql

I want to join 2 or more table in my Hotel management project, so what all are the steps to join tables? Is it necessary to give foreign key in each table we need to join or works without foreign key? ...
2
votes
1answer
1k views

SQLAlchemy - don't enforce foreign key constraint on a relationship

I have a Test model/table and a TestAuditLog model/table, using SQLAlchemy and SQL Server 2008. The relationship between the two is Test.id == TestAuditLog.entityId, with one test having many audit ...
-2
votes
1answer
51 views

How would I go about designing this query? [closed]

Basically; I am on the Announcements page of a Client Control Panel, and I need to show the First Name of whoever made that announcement. I have their contact ID. $res = mysql_query("SELECT * FROM ...
6
votes
2answers
6k views

How to select SQL results based on multiple tables

I need to select results from one table based on certain matching values in a couple of other tables. I have the following tables: person: id, firstname, lastname team: id, teamname player: id, ...
1
vote
1answer
1k views

SQLAlchemy and joins, we have no foreign keys

Assume the following in MySQL: CREATE TABLE users ( id integer auto_increment primary key, username varchar(30), active enum('N','Y'), created_on int(11), updated_on int(11), points ...
4
votes
1answer
575 views

MYSQL join tables multiple times

I have a table, with rows of events, and each one has (amongst lots of other fields) addedbyuser, editedbyuser, deletedbyuser There are INT, and refer back to the users table to a particular user. I ...
2
votes
2answers
4k views

How do I create this relationship in phpMyAdmin?

I'm following along with a book that wants me to create the following relationships in my database: ALTER TABLE 'tbl_issue' ADD CONSTRAINT 'FK_issue_project' FOREIGN KEY ('project_id') REFERENCES ...
0
votes
3answers
149 views

MySQL SELECT and return unknown number of related foreign keys

I have two tables in a database that look like this Course: ixCourse (primary key) enType (enum: 3 possible values) sCourse (string) sTitle (string) sWhen (string) sDescription (string) ...
1
vote
1answer
394 views

mysql selects with joins with foreign keys when using a supplied id

Also, if this isn't the right place then i'll move it to stack overflow. I posted it here, since when i had a question about mysql over there, they said that this is where such questions should be ...
0
votes
0answers
805 views

Hibernate mapping with foreign key table

I'm trying to create a hbm.xml to map some persistent objects in java with hibernate. My Domain looks like this: A Property has a Folder which has root Folders. Property has a key to find the Folder ...
1
vote
2answers
3k views

Multiple foreign keys from one table linking to single primary key in second table

I have a database with three tables, a household table, an adults table and a users table. The Household table contains two foreign keys, iAdult1ID and iAdult2ID. The Users table has a iUserID primary ...
0
votes
1answer
1k views

How do I do select from a one-to-many relationship in CodeIgniter?

I have a number of tables that I'm trying to access in CodeIgniter, and one of them is basically a collection of foreign keys from the other tables, most of which are only two fields: a unique id and ...
0
votes
2answers
416 views

Rails Foreign Key Issue

Sorry if this question seems simple, I am very very new to Rails (just started learning a few days ago), but after consulting Google and "Agile Web Development with Rails" I can't find the answer. I ...
3
votes
3answers
3k views

Many-to-Many Relationships in MySQL

I've been reading up on foreign keys and joins recently, and have been pleasantly surprised that many of the basic concepts are things I'm already putting into practice. For example, with one project ...
4
votes
5answers
3k views

Does clustered index on foreign key column increase join performance vs non-clustered?

In many places it's recommended that clustered indexes are better utilized when used to select range of rows using BETWEEN statement. When I select joining by foreign key field in such a way that this ...
2
votes
1answer
2k views

Entity Framework - How do I join tables on non-primary key columns in secondary tables?

I want to join 2 tables using entity framework. I want the join to the second table to be on a non-primary key column. e.g. I have a table Foo with fields Foo.Id (PK) Foo.DbValue and table Bar ...
0
votes
2answers
515 views

mysql join Two tables to get records

I have two tables Incharge and property. My property table has three fields 1stIncharge,2ndIncharge and 3rdIncharge. InchargeId is set as foreign key for all the above fields in the property table.. ...
2
votes
2answers
1k views

Optimize Join sentence with foreign keys, and show records with nulls

Hi guys I have the following structure SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `sis_param_tax` ( `id` int(5) NOT NULL auto_increment, `description` varchar(50) NOT NULL, ...

1 2