0
votes
2answers
39 views
Help writing a complex join query
Hello All,
I am having a table orders
orders (
id int unsigned not null,
fcr_date TIMESTAMP,
completion_date TIMESTAMP,
factory_no varchar(255),
vendor_no varchar(255))
Please ignore the …
0
votes
1answer
18 views
mySQL JOIN syntax using bridging table
Hi folks,
I am trying to export some data from two tables bridged by a third table that stores the one (file) to many (keywords) relationship.
Tables are like so:
files
id, url, title
keywords
id, …
3
votes
4answers
87 views
inner joins in oracle
I was thinking about the syntax of inner joins in Oracle's SQL implementation and here is something that seems a bit inconsistent:
Let's say you have two relations loan(loan_number, branch_name, …
1
vote
5answers
72 views
sql query tree like structure
I have a tree like structure of Categories, the leaf Nodes in the tree have Products and the products have Cods
I need to select all the top level Categories (parent=null) that have leafs (Cods) that …
1
vote
2answers
51 views
Using JOINS in MySQL
I have this query which works perfectly:
SELECT *
FROM Customer
WHERE SacCode IN
(
SELECT SacCode
FROM SacCode
WHERE ResellerCorporateID = 392
ORDER BY SacCode
)
AND CustomerID IN
(
…
0
votes
2answers
67 views
Basic SQL join question. Can you help me improve my skillset?
Ok.. So I'm trying to improve my SQL skills and have a question. Here is a screen shot of the schema.
(http://img509.imageshack.us/img509/97/screenhunter02nov121946.gif)
Alright so I'm selecting a …
0
votes
1answer
34 views
SQL Server ‘object’/’property’ relational tables linking to other tables
Excuse the poor title, i can not think of the correct term.
I have a database structure that represents objects, objects have types and properties.
Only certain properties are available to certain …
0
votes
7answers
75 views
MySQL Join Syntax
I'm having problems understanding the MYSQL join syntax. I can't seem to manipulate it for my purpose. I have had to use work arounds for months which have resulted in extra queries just for …
0
votes
2answers
64 views
Help with MySQL Query with many Joins
Setup: Contact database using 4 tables
Contacts
Cities
States
Zips
Structure:
CREATE TABLE `contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last` varchar(100) CHARACTER SET latin1 COLLATE …
0
votes
1answer
95 views
Improve this possible 5 joins SQL sentence
Hi everyone,
I'm using MySQL 5, and I need to do this sentence to get the results. It's the first attempt when I think about it. I know there are several ways to improve it, but I want to get your …
6
votes
9answers
290 views
Best design pattern for database table joins
I'm looking at programming/design patterns for the model layer of my application, and am wondering which one fits best with the situation where you are doing a retrieval that involves joins across …
24
votes
7answers
833 views
Life without JOINs… understanding, and common practices
Lots of "BAW"s (big ass-websites) are using data storage and retrieval techniques that rely on huge tables with indexes, and using queries that won't/can't use JOINs in their queries (BigTable, HQL, …
0
votes
1answer
50 views
rails - :joins sanitizing/substitution
is it possible to specify parameters for :joins similar way as for :conditions?
here is an example (sql code is irrelevant)
named_scope :threads, {
:joins => [" LEFT JOIN groups_messages gm ON …
0
votes
3answers
89 views
SQL JOIN and WHERE statement
I have a problem getting this sql statemen to return what I want:
I want it to return a list of properties both the employee or Job_Profile. If one of them do not have the property it should return …
0
votes
1answer
47 views
has_many and sum named_scope
I have this situation:
Stories has many Tasks
Tasks have an integer called hours_left
I need a named scope to find Stories which all its tasks has more than 0 hours left.
Based on this post. I …
