Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
2k views

Django Multi-Table Inheritance VS Specifying Explicit OneToOne Relationship in Models

Hope all this makes sense :) I'll clarify via comments if necessary. Also, I am experimenting using bold text in this question, and will edit it out if I (or you) find it distracting. With that out of ...
3
votes
2answers
531 views

ValueError with multi-table inheritance in Django Admin

I created two new classes which inherit model Entry: class Entry(models.Model): LANGUAGE_CHOICES = settings.LANGUAGES language = models.CharField(max_length=2, verbose_name=_('Comment ...
2
votes
1answer
640 views

Oracle Foreign Key Issues with Multi-Table Inserts and Blobs

We have a single table that we want to break up into a tree of tables based upon a particular source column. I wanted to try using a multi-column insert, but it seems that if I insert a blob into a ...
1
vote
4answers
59 views

MySQL Multi Table Search

table1 ID SUBJECT CONTENT table2 ID SUBJECT CONTENT table3 ID SUBJECT CONTENT ... 5 more I want to search SUBJECT on all the tables How can I do this?
1
vote
1answer
145 views

Rails MTI with polymorphism

Imagine the scenario: I have a class with different types of students. All students have similar attributes, but each type of student has also unique atributes. So I used MTI to keep the common ...
1
vote
3answers
63 views

Query with multi tables

I have four tables: characters arena_team arena_table_member arena_team_stats. characters table has guid, name arena_team table has arenateamid, name, type arena_table_member table has guid(this ...
1
vote
2answers
112 views

MySQL (MyISAM) - update field to greatest of two fields from different tables

I have two tables, t1 and t2 with two columns each - id_user and age. How do I update t1.age to the greatest of t1.age and t2.age for matching ID's and leave t1.age unchanged if there is no matching ...
1
vote
1answer
336 views

What is the syntax for a multi-table delete on a MySQL database using Doctrine?

Using Doctrine, I am trying to delete records in a single table based on data gathered from multiple tables. 'companies_groups' is an association table linking 'companies' to 'groups'. I want to ...
1
vote
2answers
670 views

SQL Insert with data from multiple tables

I have four tables: Messages, MessageCategory, MessageStatus and MessageLevel. MessageCategory, MessageStatus and MessageLevel all just have three fields: Identity (primary key), Code and ...
0
votes
1answer
15 views

Multi-table query - get friend updates

SELECT M.msg_id, M.uid_fk, M.message, M.created, U.fname, U.lname, M.uploads FROM messages M, users_friends F, users U WHERE M.uid_fk=F.friendID and F.userID = '5' and status='2' Building a ...
0
votes
1answer
21 views

Database query: get updates from friends

EDIT: Got it! SELECT `update`, `date` from updates, users_friends WHERE updates.userID = users_friends.friendID and users_friends.userID = "5" and users_friends.status = "2" I realised I was ...
0
votes
0answers
112 views

Trying multi-table android, with dbHelper dbAdapter, dbAdpaterPerTable … properly accessing these classes?

I'm very new to Android, and Java. I'm trying to create a dbHelper, dbAdapter, dbAdpter_per_table for a multi-table android application. My DBAdapter: package com.s.s.database; import ...
0
votes
1answer
34 views

SELECT from separate tables without relationship

How can relise in one query this SELECTs from tables without relationship? SELECT discount_rate.valueSet, discount_rate.dateSet FROM discount_rate WHERE discount_rate.dateSet<='2011-12-11' ...
0
votes
1answer
61 views

Multi-table Update in Oracle

Just like Multi-table insert(using INSERT ALL) is there multi-table Update facility in Oracle? In which version? Thanks in advance
0
votes
1answer
89 views

Read Only Multitable DTO + Hibernate

I have two tables in my DB, T1 and T2. One column of T1 is a foreign key that references T2. I need only a part of the columns of T1 and T2 for my processing, thus I've created a DTO T1T2 that ...
0
votes
0answers
71 views

android multi table adapters queries

I've been reading about having multiples tables in a SQLite database in Android. One approach is to have 1 adapter class for each table, and each adapter will implement CRUDs methods for each table. ...
0
votes
1answer
118 views

Django Multi-table inheritance: specify custom one-to-one column name

I'm trying to create a Django ORM mapping that's compatible with an existing data model, so I'm trying to work with an existing set of table and column names. I've got a multi-table inheritance ...
0
votes
3answers
128 views

LINQ multi-table query - only 2 of 3 tables are returned

QUERY: I want to return all restaurants with a CUISINE__BANE = cusisineName regardless of the city in which they are located. My query returns the RESTAURANT and CITY tables but not the CUISINE ...
0
votes
0answers
156 views

Django - Alternative to multi-table inheritance in Appengine

I'm developing a Django application on Google Appengine, and I came across a db design problem where multi-table inheritance seems to be the best solution. Unfortunately, however, multi-table ...
0
votes
4answers
3k views

Creating a multi-table SQL database in android

I'm trying to create a multi-table database for my android application. I'm following the suggestion given on this site ...
0
votes
2answers
86 views

SQL: Update with value from other table depending on timestamp

I have the following problem: I want to update the column "UPDATE_VALUE" of table A with values from the column "SOURCE_VALUE" from another table B. Both tables have a timestamp column, and the value ...
0
votes
2answers
279 views

How to return multi-table join value from BLL

This question is regarding the ASP.NET webservice that i am creating using the DAL-BLL architecture for my final school project. I have a stored procedure, which is a select query with an inner join ...
0
votes
1answer
180 views

mapping entity from multiple table with NHibernate

I hope you can help somewhat novice to NHibernate with the following question. Suppose we have two table: Page and WorkPage. Page table contains unversioned data and WorkPage contains versioned Data ...
0
votes
2answers
177 views

PHP SQL: Matching corresponding Data between 2 tables, without Filtering out Data in 1st Table

I have 2 tables. For simplicities sake 'u' has the following columns userid divisionid 'd' has the following: divisionid name I did not create this table, otherwise I would not have this problem. ...