0
votes
1answer
47 views

FetchXML with outer joins and nested inner joins: Is it possible to do an outer join on a nested inner join?

I am attempting to do some nested joins using FetchXML. I want to do an inner join on two linked child entities, and then do an outer join on that result to retrieve all rows from the parent along ...
1
vote
2answers
136 views

Self join with inner and outer join query

I have a table that is set up so that one column (attribute) contains information like first name, last name, account number and any other information related to a thing in the database. Another ...
2
votes
1answer
101 views

Issue selecting Category and SubCategory of an Item while creating one delimited string per row of a table

Some Context: The DB is Oracle. I am trying to create one delimited string per row of a table. The delimited string needs to contain two of the item's categories (if available, there will always be ...
0
votes
2answers
144 views

Multiple Joins between multiple tables

I am building a Time off requests tool for work. I have 3 tables: REQUESTS, COVERED, and MODID. REQUESTS Has the following fields: ID INT Auto_Increment not null Primary Key MODID VARCHAR(7) not ...
0
votes
0answers
34 views

Left join didn't pick all the records from left table [closed]

INSERT INTO project_dim1 ( project_id,project_name,client_name, list_type,project_start_date, project_create_date,actual_project_end_date, ...
0
votes
1answer
67 views

Combination of table left join to an inner join in mysql

Lets say, I have 3 tables, cars, cars_owner and owner. Now I want to have the complete list of cars, those that do have owners and those that don't. When a car has an own, I must have the data of the ...
1
vote
1answer
90 views

Date Join Query with Calculated Fields

I'm creating an Access 2010 database to replace an old Paradox one. Just now getting to queries, and there is no hiding that I am a new to SQL. What I am trying to do is set up a query to be used by ...
0
votes
2answers
87 views

get distinct record from 3 tables using join in codeigniter

i have three tables cases,clients,attendance in cases id start_date end_date client_id status 1 2012-12-30 2013-01-30 1 new starts 2 2012-12-31 2013-01-31 ...
5
votes
3answers
336 views

data.table inner/outer join with NA in join column of type double bug?

Following this wikipedia article SQL join I wanted to have a clear view on how we could have joins with data.table. In the process we might have uncovered a bug when joining with NAs. Taking the wiki ...
0
votes
1answer
215 views

SQL Query: Complex Inner Joins and Outer Joins

Hi everyone I am currently working on an SQL sample project, trying to learn the basics of SQL and inner outer joins in general. This is my current Database diagram: http://imgur.com/z0Ger I am ...
1
vote
2answers
142 views

SQL Left vs Right Outer Join. Return all values

PROBLEM: Need query to return the MONTH and YIELD for Each Year. For some reason, if the data is not found in a Month a.Month the query will not return the b.Month's Yield. I need the query to ...
1
vote
2answers
100 views

How to print each day of the week as Column 1 in a MySQL query where not all days have a result

I have the following query which shows the number of hours billed for each day of the week SELECT DAYNAME(record_date), sum(value) FROM acx_time_records WHERE acx_time_records.state = 3 AND ...
1
vote
2answers
137 views

Oracle outer join not giving expected results (behaving like inner join)

This query: select * from table_a , table_b where table_a.id = table_b.id(+) and table_b.name = 'BENEFICIARY' returns me no records. table_b has no records with name='BENEFICIARY'. But the outer ...
-1
votes
3answers
62 views

How to Get A Count From Another Table In SQL? PART 2

Well I have already got my quesiton answered in this post... How to Get A Count From Another Table In SQL? However, now I have another question... In the end I used this query SELECT ...
0
votes
2answers
277 views

SQL: Join Parent - Child tables

I'm building a simple review website application and need some help with SQL Query. There are 3 tables (Topics, Comments, Users). I need a SQL query to select the data from all 3 tables. The ...
0
votes
2answers
452 views

Access 2007 SQL - Mixing Left Join and Inner Join

It's really hard for me to sort this thing out. I've tried every possible combinations on the FROM part but I can't seem to get it. I've tried comma, mixing inner join & left join then this. The ...
0
votes
3answers
979 views

Join Matrices in MATLAB

I have two matrices like the following ones: '01/01/2010' 1 '02/01/2010' 2 '03/01/2010' 3 '05/01/2010' 11 '06/01/2010' 17 '01/01/2010' 4 ...
0
votes
1answer
50 views

SQL query to read a user's stream

CREATE TABLE `social_activity_stream` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `social_actor_id` int(11) NOT NULL, `social_activity_id` bigint(20) NOT NULL, `social_activity_type_id` int(11) ...
0
votes
2answers
205 views

SQL statement joining 3 Oracle tables

I have reviewed several sites and numerous tutorials trying to determine the closest match for my situation and while I find many similar possible resolutions, no exact solution gives me what I think ...
3
votes
4answers
106 views

Why doesn't my query return any results?

Why does this sql query only show results if they only have a row in users_warnings? SELECT u.id, uw.warning FROM users u INNER JOIN users_warnings uw ON ( u.id = uw.uID ) LIMIT 21 I ...
1
vote
1answer
284 views

What influences NHibernate to use outer joins instead of inner joins?

I have several one-to-many mappings in an NHibernate project that are configured to use Sets. Without doing projects, and with max_fetch_depth set to 2, NHibernate appears to always use outer joins ...
0
votes
1answer
114 views

MYSQL JOIN on the same table

I currently have this query set-up: SELECT topic.content_id, topic.title, image.location FROM mps_contents AS topic INNER JOIN mps_contents AS image ON topic.content_id = ...
0
votes
2answers
110 views

Need help with SQL query for comments moderation

I am developing a comments moderating system as part of my website so i can see a list of comments before they are published so i can either publish them as okay or delete them if inappropiate. I ...
2
votes
1answer
154 views

Want to exclude from the query some records, but I do not know how

I have three tables like this: messages user_id | message 2 | 'foo' 3 | 'bar' blacklists user_id | blacklister_id 1 | 2 users id | name 1 | 'me' 2 | 'blacklister' ...
1
vote
3answers
119 views

Need help with a sql query that has an inner and outer join

I really need help getting this query right. I can't share actual table and column names, but will try my best to layout the problem simply. Assume the following tables. The tables and keys CANNOT be ...
1
vote
4answers
123 views

SQL Joins : in, out, shake it all about

I am performing the follwing sql to return a data where there is a match of both dob and address in tables1 & 2. select table1.dob , table1.address , sum(case when person_status in ('A','B','C') ...
7
votes
4answers
2k views

Opposite Of An Inner Join Query

can someone help me write sql for a scernerio like this: Table 1 2 columns: ID, Name Table 2 2 columns: ID, Name I want a query to show names from Table 1 that are not in table 2. So filter out ...
4
votes
5answers
1k views

SQL Server 2005 RIGHT OUTER JOIN not working

I'm looking up access logs for specific courses. I need to show all the courses even if they don't exist in the logs table. Hence the outer join.... but after trying (presumably) all of the ...
-1
votes
1answer
293 views

If Inner Join can be thought of as Cross Join but filtering out the records satisfying the condition, then Left Outer Join is the above, plus 1 record for the “no match” on the Left?

If an Inner Join can be thought of as a cross join and then getting the records that satisfy the condition, then a LEFT OUTER JOIN can be thought of as that, plus ONE record on the left table that ...
4
votes
5answers
259 views

For SQL, when did it start to be desirable to always use the words “Inner Join” instead of implicitly joinly?

For SQL, when did it start to be desirable to always use the words "Inner Join" instead of implicitly joining by: select * from t1, t2 where t1.ID = t2.ID; ? Is it just for style or to distinguish ...
4
votes
9answers
2k views

Compare inner join and outer join SQL statements

What is the difference between an inner join and outer join? What's the precise meaning of these two kinds of joins?
1
vote
1answer
442 views

Outer join or dynamic query, which is the best way to go?

I have the following tables (I've simplified the data contained in the tables). RateTable - rate_table_id [int] - rate_table_name [nvarchar(50)] RateTableUsed - rate_used_id [int] - ...
-1
votes
3answers
3k views

Help me out with this MySql full outer join (or union)

This is coming from converting MSSQL to MySql. The following is code I'm trying to get to work: CREATE TEMPORARY TABLE PageIndex ( IndexId int AUTO_INCREMENT NOT NULL PRIMARY KEY, ItemId ...
4
votes
1answer
7k views

How do you combine an inner and outer join in mysql

I can do it in sybase and I can do it in oracle, but I'm not seeing how to do it in mysql. I've got this: (please restrain yourself from re-formatting my sql, last time somebody did that they changed ...
743
votes
10answers
368k views

Difference between inner and outer join

What is the difference between INNER JOIN and OUTER JOIN?