Tagged Questions

In databases, a "natural" join is one that joins on all like-named columns between tables

learn more… | top users | synonyms

4
votes
5answers
206 views

Is NATURAL (JOIN) considered harmful in production environment?

I am reading about NATURAL shorthand form for SQL joins and I see some traps: it just takes automatically all same named column-pairs (use USING to specify explicit column list) if some new column ...
4
votes
4answers
2k views

Oracle Natural Joins and Count(1)

Does anyone know why in Oracle 11g when you do a Count(1) with more than one natural join it does a cartesian join and throws the count way off? Such as SELECT Count(1) FROM record NATURAL join ...
2
votes
4answers
270 views

Natural Join — Relational theory and SQL

This question comes from my readings of C.J Date's SQL and Relational Theory: How to Write Accurate SQL Code and looking up about joins on the internet (which includes coming across multiple posts ...
2
votes
2answers
654 views

SQL natural join POSTGRES

I'm not sure what kind of join I need as I'm not familiar with trying to overlap data in such a way or if it's even feasible. I have two tables which both share a similar set of data and are both ...
1
vote
2answers
68 views

SQL Query Issue - Natural Join and table naming

I'm running into some difficulty with a query for my databases class. Given the following schema: Customers (customerid, first_name, last_name, address, city, state, phone, status) Branches ...
1
vote
3answers
233 views

Is using Natural Join or Implicit column names not a good practice when writing SQL in a programming language?

When we use Natural Join, we are joining the tables when both table have the same column names. But what if we write it in PHP and then the DBA add some more fields to both tables, then the Natural ...
0
votes
2answers
32 views

What the Heck is wrong with my (not to complex) MySQL-Query?

I might be blind on both eyes, but iterating through a lot of versions and tries... Deleted the hyphenation and the AS statements... I always ended up with a parsing Error 1064 from my MySql5.1 ...
-1
votes
4answers
145 views

NATURAL JOIN on large tables

I am performing a simple natural join on two big tables. table 1 contains 68,000 rows (45 MB) table 2 contains about 2 million rows(210 MB) . Does that mean that the database engine makes a data ...