1
vote
1answer
30 views

UNIX Full Outer Join creates duplicate entries items despite correct order? Could it be the unpaired items creating disorder?

I have two files that I want to join based on their first column. They are sorted, and not all of the values in the first column in FILE1 are in FILE2, and viceversa. FILE1.TXT looks something like ...
1
vote
4answers
58 views

SQL Select When Something IS NOT IN a Joined Table

Ok. I have some data in one table, that references on multiple occasions some data in another table. Table1 - main client table Table2 - user defined fields Say I have a query that shows a client ...
0
votes
1answer
90 views

Use SUBSTR in HSQL left outer join clause

I need to perform the following querry using HSQL (with ORACLE works fine): select t.name as sh_name, b.name as sh_bName from PERSON t left outer join TRANS tr on t.id=tr.tid ...
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
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
3answers
61 views

Compound mysql Select After outer join

I have a table A with columns (a, b) and a table B with columns (b, c). I want to do the following: STEP 1: do a A LEFT OUTER JOIN B ON A.b = B.b STEP 2: convert all c = NULL in the Joined table to ...
2
votes
2answers
113 views

SQL Full outer join exclusion, select non existing row

this is a confusing question to write for me so bare with me. I have 3 tables section id name permission id section_id name exclusion_permission permission_id The query is as follows: SELECT ...
0
votes
2answers
91 views

LEFT OUTER JOIN needs improving due to poor performance

I have a table that has a Name column along with with 3 identifiers that refer to other entries within the same table. I a query that resolves those 3 identifiers into the actual names of the records ...
0
votes
1answer
86 views

SQL Compact Edition LEFT OUTER JOIN Average

I have a table with products and a table with ratings. I have the following query; SELECT products.name, ratings.rating FROM products LEFT OUTER JOIN ratings ON products.id = ...
0
votes
2answers
88 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 ...
1
vote
3answers
216 views

SQL transforming from (+)= query to left outer join

Query before transformation SELECT w.tech AS tech, w.wpcddate AS job_date, w.corp AS corp, w.house AS house_number, w.cust AS cust_number, h.zipcode AS zipcode ...
1
vote
1answer
32 views

MySQL: how to make this query involving a join and a left join

This is just a college exercise, so I'm not in a hurry. But I'd like to have the answer already. Consider these tables and rows: create table course ( numco integer, nameco varchar(20) not ...
4
votes
4answers
549 views

MySQL Counting unique values over two columns and joining those counts for each column

I have a table that is setup like this: +----+-------+-------+ | id | col1 | col2 | +----+-------+-------+ | 1 | John | Mike | | 2 | Mike | John | | 3 | Marty | John | | 4 | ...
0
votes
2answers
75 views

How can I get join not duplicate?

I get join 2 tables but use 3 table. I need not duplicate values. But I try join have duplicate. Table peopleAll: pNo pName ------------- 00001 Sang 00002 Janta 00003 Els 00004 Est 00005 Sam ...
1
vote
2answers
101 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
1answer
48 views

SQLite Person Involved in A OR B

I'll be honest this is a homework question, but I've wasted hours into it and just can't get it right. It returns either the wrong number of results or the wrong data: I need to select every person ...
0
votes
2answers
115 views

Mysql JOIN with IN and multiple results of RIGHT table

The LEFT table (simplified) is: id name (ex:Bob) tags (ex:1,4,6) The RIGHT table is: id tag (ex:Sailing) I want to get the results of the LEFT table like this: row 1: name: Bob tags: ...
0
votes
1answer
170 views

left outer join in 3 tables

I hv 3 tables shop floor and owner shop is parent table and other 2 are child tables SHOP s_id, floor_id,s_owner,s_remarks 1,2,1,big shop 2,2,3,near bank 3,1,2,corner 4,7,7,FAKE FLOOR ...
0
votes
3answers
57 views

Select from two outer joined tables where a possible null column

Question similar to this: select from two tables where linked column can be null column1tab1 column2tab1 order_number product amount xx yy 123 p1 2 xx yy ...
0
votes
2answers
455 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
1answer
60 views

Retrieve columns from the same table with the same foreign keys but different values

This is a quite delicate question, but I'll give my best to make it clear: I have a table countrynames with 3 columns: iso, lang, name. The main spelling for these is english, for example: ...
4
votes
3answers
247 views

Multiple use of LEFT JOIN brings only 1 row

It is an intelligent tag base image search system. User adds images with its proper tags in such a table: image (id, title, ...) tag (id, title) /* It doesn't matter who has created the tag*/ ...
1
vote
2answers
569 views

Multiple joins to single table in SQL Server query throwing off counts

I am writing a stored procedure in SQL Server Management Studio 2005 to return a list of states and policy counts for two different time periods, month to date and year to date. I have created a ...
0
votes
2answers
118 views

MySQL Joins - Placement of the ON clause

I recently tried to pull some results and was struggling to work out the correct query to do it. All the examples I have seen and even my MySQL book show joins as follows: SELECT * FROM table_1 LEFT ...
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) ...
1
vote
3answers
575 views

Left Outer join with same table as part of the outer join

I was wondering how I could go by writing a the outer join query to get the required outputs (described below) where the tables I am outer joining are part of the other join conditions in the ...
0
votes
2answers
58 views

How to ensure outer join with filter still returns all desired rows?

Imagine I have two tables in a DB like so: products: product_id name ---------------- 1 Hat 2 Gloves 3 Shoes sales: product_id store_id sales ...
0
votes
1answer
65 views

What does this sql statement in the log means?

For some reason the view is blank even though there is data in the database.In the log shows sql statement selecting the tables but i dont really understand it,Can anybody help me ,what is going on ...
1
vote
2answers
487 views

Need to convert an LEFT JOIN to JPQL

immagine following problem: somebody wants to buy a basket of fruit containing green fruits from Africa and South America but no red fruits from Africa. for that we think about following classes: ...
1
vote
4answers
216 views

SQL OUTER JOIN: “partial NULL”-rows wanted

I'm looking for a way to archive the following: Imagine Tables A, B: A: aID, aID2, avalue ================= 1 , 10 , 'abc' 2 , 20 , 'def' 3 , 30 , 'ghi' 4 , 40 , 'jkl' B: bID, bID2, ...
1
vote
1answer
2k views

SQL 2 left outer joins on same table

I'm doing 2 joins on the same table and I want the following results: chnl_ptnr_key type1_ky type2_ky ------------- -------- -------- 1 1 null 1 2 null 1 ...
1
vote
5answers
149 views

Do I have this LEFT JOIN right?

I need to find the total number of customers created after a given date that haven't yet ordered. I have two tables: | customers | // There's more to this but this is all ...
2
votes
1answer
4k views

Left Outer Join via Linq To Entities via Entity Framework with Where clause

I have read all the posts related to implementing the equivalent of a LEFT OUTER JOIN in Linq to Entities (.NET 3.5) when using the Entity Framework, but have yet to find a solution to the following ...
3
votes
1answer
646 views

Left Join, Order by, MySQL Optimization

I have a query like this: SELECT m...., a...., r.... FROM 0_member AS m LEFT JOIN 0_area AS a ON a.user_id = (SELECT user_id FROM ...
2
votes
3answers
7k views

PostgreSQL: left outer join syntax

I'm using PostgreSQL 8.4.6 with CentOS 5.5 and have a table of users: # select * from pref_users where id='DE2'; id | first_name | last_name | female | avatar | city | lat ...
0
votes
0answers
635 views

LLBLGen - How to left join unrelated tables, and obtain records where there is no joined data

We are working with LLBLGen v2.6 and trying to pull back records which do not have a certain relation. This relation is a category with a one to many mapping, and one of our entities can have zero or ...
11
votes
2answers
5k views

Basic Question : LEFT OUTER JOIN vs Left Join

What is the difference between between Left Join and Left Outer Join?
1
vote
7answers
3k views

What are some good examples where SQL's OUTER JOIN is used?

I often get asked the questions in an interview that "what is an outer join in SQL"? While it can be answered, I wonder what might be some classic and good real life examples where a (LEFT) OUTER ...
1
vote
1answer
117 views

SQL: Gather right hand values from a join

Let's say a question has many tags, via a join table called taggings. I do a join thus: SELECT DISTINCT `questions`.id FROM `questions` LEFT OUTER JOIN `taggings` ON `taggings`.taggable_id = ...
6
votes
3answers
17k views

Remove Duplicates from LEFT OUTER JOIN

Hey folk my question is quite similar to http://stackoverflow.com/questions/757957/restricting-a-left-join I have a variation in that request though and the comment didn't allow too many characters ...
2
votes
3answers
214 views

SQL: Get list of non-coupled items using MySQL 4

I'm not that good in SQL and I've come across a problem I don't know how to solve. I've read and re-read parts of a book about SQL (O'Reilly's Learning SQL) which I hoped would contain the information ...
1
vote
1answer
892 views

Efficient MySQL query to find entries in A where not matched in B

I have a couple of tables (products and suppliers) and want to find out which items are no longer listed in the suppliers table. Table uc_products has the products. Table uc_supplier_csv has supplier ...
2
votes
4answers
5k views

Linq to entities Left Join

I want to achieve the following in Linq to Entities: Get all Enquires that have no Application or the Application has a status != 4 (Completed) select e.* from Enquiry enq left outer join ...
5
votes
6answers
13k views

SQL SELECT from multiple tables

How can I get all products from customers1 and customers2 include their customer names? customer1 table cid name1 1 john 2 joe customer2 table cid name2 p1 sandy p2 linda product table pid ...
-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 ...
2
votes
1answer
336 views

Linq to Sql Localisation query

Given the following tables I'd like to return the localised text for given culture or the text for the default culture where no row exist for the given culture. So with the folowing data Resources ...
5
votes
2answers
5k views

What is the precedence of multiple JOIN statements in sqlite?

The following two queries are returning different results, to my surprise: SELECT * FROM foo JOIN bar ON bar.id=foo.bar_id JOIN baz ON baz.id=foo.baz_id ...