3
votes
2answers
34 views

How to emulate Oracle (+) outer join notation in in-memory database used to run Java unit tests?

We are using HSQLDB with Oracle database syntax(jdbc:hsqldb:mem:TestDB;sql.syntax_ora=true) for our datalayer unit tests. (We realize this is not ideal and it would be better if we could test against ...
1
vote
2answers
34 views

Left Outer Join, No result in final query

I'm executing the following query Select * from A a left outer join B b on (b.id = a.id) I'm getting one record from A and no records from B. I'm expecting one record in final select query but ...
1
vote
3answers
39 views

oracle sql full join with table a not in

I have to tables (tbla and tblb) with each one col (id): select * from tbla; ID --- 1 3 5#A select * from tblb; ID --- 2 3 Now I need a full join: select a.id, b.id from tbla a full outer join ...
1
vote
1answer
177 views

Oracle SQL Conditional Outer Join using case statement

Lets say that I have three tables: 1. TableA with columns TableAID (PK), Desc Nullable 2. TableB with columns TableBID (PK), TableAID(FK) Nullable 3. TableC with columns TableCID (PK), TableBID ...
2
votes
1answer
106 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
0answers
81 views

How To translate Oracle outer join in where-clause to LINQ

I am converting(modernizing) an old .NET 1.1 application to .Net 4 and got stuck on translating an old SQL query to LINQ The SQL query looks like this SELECT PROJEKT.ID_PROJEKT, ...
0
votes
3answers
189 views

Oracle Procedure - JOIN with Subquery

I need some help finishing this procedure. The problem is how to alias the different SELECTs so that I can match them on the RIGHT OUTER JOIN. The traditional AS doesn't work. Any ideas? PROCEDURE ...
1
vote
2answers
123 views

Are this query identical? Not exist and left outer join formulation

I want to take every record of ENI_MONITOR which is orphan. In ENI_FLUSSI_HUB the corresponding record should not exists. Are both te formulation correct? How does left outer join thinks? SELECT /*+ ...
2
votes
1answer
195 views

outer join more than 1 table

let's say I have 5 tables, as follows: CREATE TABLE T1 ( FIRST_NAME VARCHAR2(100), LAST_NAME VARCHAR2(100), CITY NUMERIC, SALARY NUMERIC); CREATE TABLE T2 ( CITY NUMERIC, DISTRICT NUMERIC); CREATE ...
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
103 views

How to do a self outer join in Oracle?

How can one do a self outer join in oracle ? (I'm using 11g) I tried the following query with lots of combinations of (+) everywhere and left/right : select t1.name, t1.status, t2.status from my_tab ...
0
votes
1answer
101 views

extractValue and right outer join - Oracle SQL

i got a little (at least i hope so) problem with an SQL Query. Here's my join WHERE obj.mod_type = 'SER' and obj.wrk_id=wrk_lang.id(+) and ...
1
vote
1answer
148 views

Right outer join on two tables where ON clause has a subquery

I am trying to perform a right outer join on two liferay tables — users_ and expandovalue — to get a result set. When I did the following query on all the users, I got desired result. ...
0
votes
4answers
121 views

SELECT * FROM tableA, tableB WHERE Conditions [+]

I have the following query SELECT * FROM tableA, tableB WHERE Conditions [+] What does this keyword Conditions[+] Stands for? How this query behaves as a outer join?
1
vote
1answer
271 views

Oracle and SQL Server select (+) equivalent

In Oracle I have: SELECT t2.Regkood, t2.naitatel, t2.naitafaks, t3.lahtiolekuaeg, t1.* FROM table1 t1, table2 t2, table3 t3 WHERE t1.client = t2.client AND t1.client = t3.client(+) AND t1.client = ...
2
votes
2answers
2k views

Workaround for outer join with an IN operator in Oracle

I am using Oracle SQL, so outer joins have the nice (+) syntax. I should warn you that I am not allowed to redesign the database; I work for a large organization. Here are some example tables: ...
2
votes
1answer
82 views

Fixed conditions on outer joins

this is not a real example, it is something that has been bugging me for some time, and I'd be very thankful to anyone who can explain this behavior. I have these two tables MYTABLE1 ID TYPE ...
5
votes
4answers
158 views

Do I misunderstand joins?

I'm trying to learn the the ansi-92 SQL standard, but I don't seem to understand it completely (I'm new to the ansi-89 standard as well and in databases in general). In my example, I have three ...
0
votes
1answer
318 views

Outer join with group by subqueries

I'm trying to execute a query in an Oracle 10g DB to join two subqueries as it follows: SELECT * FROM( select count(y), x from a group by y) t1 full join (select count(z), x from b group by z) t2 ...
0
votes
1answer
4k views

Joining two SELECT statements using Outer Join with multiple alias

I have a complicated select statement that when it is executed, I give it a date or date range I want and the output comes out. The problem is I don't know how to join the same SQL statement with the ...
1
vote
4answers
215 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, ...
0
votes
2answers
208 views

Outer join and self-refer in Oracle

I have customers with contract at various sites which must be charged. There are two types of billing address for the sites: sites charged at the customer's address and sites charged to another ...
1
vote
2answers
23k views

Left outer join on multiple tables in Oracle

How to write a oracle query which is equivalent to the below query in informix: select tab1.a,tab2.b,tab3.c,tab4.d from table1 tab1, table2 tab2 OUTER (table3 tab3,table4 tab4,table5 tab5) ...
2
votes
1answer
2k views

(+) syntax for outer joins in mysql [duplicate]

Possible Duplicates: Oracle “(+)” Operator Oracle (Old?) Joins - A tool/script for conversion? I have been somewhat spoiled by using Oracle for years. Now I am using mysql ...
0
votes
3answers
933 views

Oracle right outer join

I have a oracle sql where I do an outer join between the accounts table and payments table. I want to know how to execute the condition p.payment_status_code = 'R' only when there is a matching record ...
1
vote
1answer
290 views

help on left outer join with parent-child relationship

i have following table in my database : id grp# code parent# -- ---- ---- ------- 0 10 US NULL 0 30 SF 10 1 10 S NULL 1 30 SF 10 ...
0
votes
3answers
382 views

Conversion of legacy outer join to ANSI

I have come across the following legacy PL/SQL and find the outer joins against scalar constants somewhat confusing. First of all, can someone please confirm that my attempt to convert this to ANSI ...
0
votes
2answers
488 views

Problem adding predicates to outer join

I have been tearing my hair out over this: -- misses nulls SELECT * FROM BASE_TABLE TAB1 FULL JOIN BASE_TABLE TAB2 USING (ANOTHER_ID) WHERE (TAB1.ID = 6 OR TAB1.ID IS NULL) AND (TAB2.ID ...
1
vote
1answer
2k views

Multiple outer join in the same request

I want to do a multiple outer join on a table with 3 others. The join is niddeclaration. The goal is to obtain a declaration with everything in relationship with it in my schema. The existing code did ...
8
votes
2answers
8k views

Oracle “(+)” Operator

I am checking some old SQL Statements for the purpose of documenting them and probably enhancing them. The DBMS is Oracle I did not understand a statement which read like this. select ... from a,b ...
2
votes
1answer
650 views

How do I convert a “legacy” left outer join statement in Oracle?

I have two tables (A and G) in an Oracle database that can be joined together based off an account number. The one caveat to this is that one of the tables (G) has about 80 fewer records than the ...
1
vote
4answers
7k views

How to do Outer Join on >2 Tables (Oracle)

I'm not sure how to describe my table structure, so hope this makes sense... I have 3 tables in hierarchical relationship such that A has a one to many relationship to B which in turn has a one to ...
3
votes
4answers
467 views

Get me the clear picture of outer joins in Oracle 9i

Outer joins seem to me a little bit confusing. Is there anyone can get me a clear picture of outer joins (right, left and full)?
1
vote
2answers
2k views

Oracle outer join short hand with upper

Works: AND UPPER(a.name) = b.lname(+) does not work AND UPPER(a.name) = UPPER(b.lname) (+) Moving to ANSI joins is an option but a painstaking one. This code should be changed in lot of places ...
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 ...
7
votes
6answers
2k views

Oracle (Old?) Joins - A tool/script for conversion?

I have been porting oracle selects, and I have been running across a lot of queries like so: SELECT e.last_name, d.department_name FROM employees e, departments d WHERE ...
2
votes
1answer
3k views

How to exclude duplicate rows when joining a table with itself

Here's a sample table to help illustrate my problem: mysql> select * from test; +----+--------------+--------+ | id | type | siteid | +----+--------------+--------+ | 1 | First Visit | ...
1
vote
3answers
4k views

Efficient Alternative to Outer Join

The RIGHT JOIN on this query causes a TABLE ACCESS FULL on lims.operator. A regular join runs quickly, but of course, the samples 'WHERE authorised_by IS NULL' do not show up. Is there a more ...
2
votes
2answers
10k views

Getting only one row in outer join using oracle

I've got a table and want to outer-join another table, getting only the first row (the one with lowest nr) of the second table using Oracle 10g. Edit: nr is unique within an id Table x Table y id ...
1
vote
1answer
985 views

Oracle join operator

How to rewrite this: select tab1.id, tab2.id, tab3.id from tab1, tab2, tab3 where tab1.col1 = tab2.col1(+) and tab2.col2 = tab3.col2(+); using OUTER JOIN syntax?