Tagged Questions

an operation that combines records from two tables in a relational database

learn more… | top users | synonyms

43
votes
11answers
18k views

INNER JOIN ON vs WHERE clause

For simplicity, assume all relevant fields are NOT NULL. You can do: SELECT table1.this, table2.that, table2.somethingelse FROM table1, table2 WHERE table1.foreignkey = table2.primarykey ...
34
votes
3answers
14k views

How to join data frames in R (inner, outer, left, right)?

Given two data frames df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3))) df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1))) > df1 ...
16
votes
4answers
12k views

Oracle - Update statement with inner join

I have a query which works fine in MySQL, I'm trying to get it working on oracle but get the following error SQL Error: ORA-00933: SQL command not properly ended 00933. 00000 - "SQL command not ...
12
votes
1answer
11k views

Rails ActiveRecord :joins with LEFT JOIN instead of INNER JOIN

I have this code User.find(:all, :limit => 10, :joins => :user_points, :select => "users.*, count(user_points.id)", :group => "user_points.user_id") ...
12
votes
4answers
53k views

Using DISTINCT inner join in SQL

I have three tables, A, B, C, where A is many to one B, and B is many to one C. I'd like a list of all C's in A. My tables are something like this: A[id, valueA, lookupB], B[id, valueB, lookupC], ...
9
votes
17answers
613 views

SQL: Inner joining two massive tables

Good afternoon, I have two massive tables with about 100 million records each and I'm afraid I needed to perform an Inner Join between the two. Now, both tables are very simple; here's the ...
7
votes
6answers
234 views

which query is better and efficient - mysql

I came across writing the query in differnt ways like shown below Type-I SELECT JS.JobseekerID , JS.FirstName , JS.LastName , JS.Currency , JS.AccountRegDate ...
6
votes
5answers
224 views

SQL: many-to-many relationship, IN condition

I have a table called transactions with a many-to-many relationship to items through the items_transactions table. I want to do something like this: SELECT "transactions".* FROM "transactions" ...
5
votes
4answers
98 views

Why is mySQL query, left join 'considerably' faster than my inner join

I've researched this, but I still cannot explain why: SELECT cl.`cl_boolean`, l.`l_name` FROM `card_legality` cl INNER JOIN `legality` l ON l.`legality_id` = cl.`legality_id` WHERE cl.`card_id` = ...
5
votes
1answer
57 views

Odd INNER JOIN syntax and encapsulation

I'm usually pretty well versed with JOINS, but this is new. Suppose three tables (classic case of two tables and a third, linker table): Customer Product Transaction -------- ------- ...
5
votes
2answers
108 views

How to count similar interests in MySQL

I have 2 tables, 'interests' and 'users_interests'. 'users_interests' just has userid and interestid fields. 'interests just has an id and a name. I simply need to find userid's who have more than ...
5
votes
5answers
814 views

How do I avoid a full table scan with this basic inner join?

I have a table that has a foreign key to a table that stores some blob data. When I do an inner join on the tables with a condition on the main table the join type goes from 'index' to 'ALL'. I would ...
5
votes
9answers
3k views

What are the steps followed by sql engine to execute the query..??

My question is not how to use inner join in sql. I know about how it matches between table a and table b. I'd like to ask how is the internal working of inner working. What algorithm it involves? ...
5
votes
14answers
1k views

Is seven inner joins in a query too much?

I have a query that has 7 inner joins (because a lot of the information is distributed in other tables), a few coworkers have been surprised. I was wondering if they should be surprised or is having 7 ...
5
votes
5answers
2k views

Interesting Many-many sql join

I have three related tables "A(id, val)", "B(id, val)", and a link table with a value "AB(aid, bid, val)" I am querying against B to bring back A values, for example: SELECT A.* FROM A INNER JOIN ...
4
votes
1answer
419 views

Ormlite inner join on three tables

i want to create an inner join on three tables like this one for example: SELECT C.Description, D.ItemDescription FROM OrderDetailStatement AS D INNER JOIN OrderHeaderStatement AS H ON ...
4
votes
2answers
372 views

When should I use an INNER -LOOP- JOIN instead of an INNER JOIN

today I learned about a thing in Sql Server called INNER LOOP JOIN. What does this mean? (Google is not helping .. or should I say ... the blog posts about it are a bit .. technical and are blowing ...
4
votes
7answers
353 views

Ambiguous column name SQL error with INNER JOIN: Why?

The following code will work to select data from two tables: SELECT t1.foo, t2.bar FROM TABLE1 t1 INNER JOIN TABLE2 t2 ON t1.foo=t2.foo I could just as easily written SELECT t2.foo, t2.bar FROM ...
4
votes
2answers
520 views

Is CROSS JOIN a synonym for INNER JOIN without ON clause?

I am wondering whether CROSS JOIN can be safely replaced with INNER JOIN in any query when it is found. Is an INNER JOIN without ON or USING exactly the same as CROSS JOIN? If yes, has the CROSS JOIN ...
4
votes
1answer
146 views

SELECT command with a WHERE condition and an INNER JOIN

I'm sure I must be making a trivial mistake here, but I've been searching around for help with this problem and all I can find is information on conditional INNER JOINs. < EDIT > The problem is ...
4
votes
3answers
181 views

Please help transform Tsql “implicit joins” into explicit ones

Sorry, I am pretty much an SQL noob. This has to work in MSFT SQL, Oracle as well as Sybase. In the following snippet I need to change an inner join between IJ and KL on IJ.PO_id = KL.PO_id into a ...
4
votes
3answers
106 views

MySQL Dynamicly determine the tabel to use with inner join

He guys, I'm stuck with a problem and I hope someone can help me out. I have a date. For example 2009-10-1. This date is used to check in which season I am working. This could be summer or winter. If ...
4
votes
5answers
393 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 ...
4
votes
1answer
2k views

Performing Inner Join for Multiple Columns in the Same Table

I have a scenario which I'm a bit stuck on. Let's say I have a survey about colors, and I have one table for the color data, and another for people's answers. tbColors color_code , color_name 1 ...
4
votes
5answers
151 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
5answers
585 views

What is so bad about using SQL INNER JOIN

Every time a database diagram gets looked out, one area people are critical of is inner joins. They look at them hard and has questions to see if an inner join really needs to be there. Simple ...
4
votes
9answers
1k 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?
3
votes
1answer
90 views

Improving SQL Server database performance

I'm designing a reporting solution which uses SQL Server 2008 R2 as its backend database. The database schema is fairly simple. One table named Calls with CallId PK and one table named Events which ...
3
votes
4answers
63 views

Can I specify the order in which the joins occur?

Say I have three tables, A, B and C. Conceptually A (optionally) has one B, and B (always) has one C. Table A: a_id ... other stuff Table B: a_fk_id (foreign key to A.a_id, unique, primary, not ...
3
votes
1answer
41 views

MySQL: Return row if joined table contains least one match

(Main table id equal to jid. Join based on that.) The 1st item has got 2 row in the join table. /That's great./ But 3rd item has got no row in join table. The question: How can i ignore those items ...
3
votes
4answers
72 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 ...
3
votes
2answers
105 views

LINQ join behaving oddly

I am attempting to perform a join between two tables and limit results by 3 conditions. 2 of the conditions belong to the primary table, the third condition belongs to the secondary table. Here is the ...
3
votes
1answer
268 views

“Sub SELECT before INNER JOIN” or “WHERE after INNER JOIN”?

There are table A and table B. I want to join these tables on two columns but only for selected rows of table A. Query scenarios: SELECT B.* FROM B INNER JOIN (SELECT * FROM A WHERE A.COLUMN1 ...
3
votes
2answers
182 views

Using INNER JOIN to receive crossed data by date range

I have a theme gallery. In the dashboard i have to display the most viewed themes BY date (today, last 7 days, last 30 days, all time). These are the 2 involved tables: theme id_theme title views ...
3
votes
2answers
596 views

MySQL Inner Join With LIMIT to left table

I have this database query SELECT * FROM (`metadata` im) INNER JOIN `content` ic ON `im`.`rev_id` = `ic`.`rev_id` WHERE `im`.`id` = '00039' AND `current_revision` = 1 ORDER BY `timestamp` DESC LIMIT ...
3
votes
3answers
836 views

Inner Join vs. Natural Join, speed-wise?

So I'm having a discussion with a colleague of mine, and we're stuck on the point of whether an inner join is faster than a natural join simply due to the fact that the ON clause is specifies in an ...
3
votes
3answers
87 views

Optimizing an inner join

I need some help with the optimization of a query. I have a query that's taking too long to run 12s and I would love if I could get some help in trying to optimize it as I'm not a sql guru. Here it is ...
3
votes
5answers
611 views

sql joins - Joining more than one table

I am trying to understand joins and im a bit confused. I know how to join tables using = <= IN exists and not exists I was trying to try and understand the use of INNER JOIN, LEFT OUTER ...
3
votes
6answers
546 views

Order by in Inner Join

I am putting inner join in my query.I have got the result but didn't know that how the data is coming in output.Can anyone tell me that how the Inner join matching the data.Below I am showing a ...
3
votes
4answers
423 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 ...
3
votes
4answers
335 views

inner join Vs Function

Which of the following query is better... This is just an example, there are numerous situations, where I want the user name to be displayed instead of UserID Select EmailDate, B.EmployeeName as ...
3
votes
3answers
178 views

SQL INNER JOIN question

I'm creating a query that will display information for a record which is derived from 8 tables. The developer who originally wrote the query used a combination of 'where this equals this' AND 'this ...
3
votes
1answer
209 views

Efficient way to store order in mySQL for list of items

I want to code cleaner and more efficiently and I wanted to know any other suggestions for the following problem: I have a mySQL database that holds data about a set of photograph names. Oh, say 100 ...
3
votes
2answers
135 views

Can I join two tables whereby the joined table is sorted by a certain column?

I'm not much of a database guru so I need some help on a query I'm working on. In my photo community project I want to richly visualize tags by not only showing the tag name and counter (# of images ...
3
votes
1answer
203 views

Difference b/w putting condition in JOIN clause versus WHERE clause

Suppose I have 3 tables. Sales Rep Rep Code First Name Last Name Phone Email Sales Team Orders Order Number Rep Code Customer Number Order Date Order Status Customer Customer Number Name ...
3
votes
4answers
106 views

How can I make an SQL statement that finds unassociated records?

I have two tables as follows: tblCountry (countryID, countryCode) tblProjectCountry(ProjectID, countryID) The tblCountry table is a list of all countries with their codes and the tblProjectCountry ...
3
votes
4answers
443 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, ...
3
votes
3answers
2k views

SQL Alternative to performing an INNER JOIN on a single table

I have a large table (TokenFrequency) which has millions of rows in it. The TokenFrequency table that is structured like this: Table - TokenFrequency id - int, primary key source - int, foreign ...
3
votes
2answers
115 views

'skipping' a table in SQL inner joins

What I mean is, If I had the following schema: create table tableA( A_id number not null primary key ); create table tableB( B_id number not null primary key, A_id number not null ...
3
votes
1answer
4k 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 ...

1 2 3 4 5 11