Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
1k views

Difference between JOIN and OUTER JOIN in MySQL

What is the difference in results between: RIGHT JOIN and RIGHT OUTER JOIN LEFT JOIN and LEFT OUTER JOIN ? Can you please explain it through some examples?
4
votes
3answers
125 views

Can someone help explain why not using a SQL JOIN is bad practice and wrong? [closed]

Possible Duplicate: Explicit vs implicit SQL joins SQL JOIN: is there a difference between USING, ON or WHERE? I'm going over code maintained by a developer who was not very familiar with ...
4
votes
5answers
100 views

How to determine whether to use join in linq to sql?

I am just wondering about how we can determine whether to use join or not in linq to sql. Eg. let say if we have two tables like this Table 1 Customer id name Table 2 ...
3
votes
2answers
767 views

how to Solve the “Digg” problem in MongoDB

A while back,a Digg developer had posted this blog ,"http://about.digg.com/blog/looking-future-cassandra", where the he described one of the issues that were not optimally solved in MySQL. This was ...
3
votes
5answers
117 views

How to do a join that removes values?

Customers Holidays id | name customer_id | start | end ---+------ ------------+--------+------ 1 | Peter 1 | 5 | 10 2 | Simon 1 ...
2
votes
2answers
70 views

How to SQL Select a one to many relation and merge the output

This has been dramatically updated since i got closer to the solution I guess the title is not the best but I did not know how to explain it better. I have locations with coordinates in two related ...
2
votes
3answers
70 views

SQL DELETE from multiple tables

When I try to execute this delete query, SQL gives me this error: "Cannot delete or update a parent row: a foreign key constraint fails (carpooling.pedido, CONSTRAINT pedido_ibfk_1 FOREIGN KEY ...
2
votes
6answers
62 views

sql join which tells me if ID exists in other table

I have 2 tables: A B -- ---- ID FKID -- ---- 1 3 2 3 3 4 4 4 I need a select statement which shows me all of A with a field that tells me if table B has ...
2
votes
2answers
21 views

Rookie mysql join question

I have: a coupons table with a column called owner_id and id and an owners table with a column called id and website_url. I'd like to get owners.website_url using only coupons.id (which is ...
2
votes
3answers
122 views

SQL joining 6 tables

Please take a look at the image.There are 5tables related to appointTable with appointID. Now i need all the data with same appointment id..what should be the joining query?Can any one help me about ...
2
votes
1answer
55 views

PostgreSQL: trying to find miss and mister of the last month with highest rating

At my Drupal website users can rate each other and those timestamped ratings are stored in the pref_rep table: # select id, nice, last_rated from pref_rep where nice=true order by last_rated desc ...
2
votes
2answers
115 views

How to select SQL results based on multiple tables

I need to select results from one table based on certain matching values in a couple of other tables. I have the following tables: person: id, firstname, lastname team: id, teamname player: id, ...
2
votes
5answers
130 views

Are there limits to the number of tables that can be joined in Oracle?

I'm writing a fairly large query, and I have 2 tables, inner joined and 15 tables left-outer joined. when I add the 16, I get ORA-03113: end-of-file on communication channel. If I remove a table to ...
2
votes
4answers
363 views

How to merge data from multiple tables in SQL

Guess I am in a complex situation. Heres the scene. I have 3 tables in SQL Server. Enrollment, Student, Course. (FYI, there are no foreign keys) The table columns are Student - StudentId, StudentName ...
2
votes
1answer
54 views

Is there an idiomatic way to cut out the middle-man in a join in Rails?

We have a Customer model, which has a lot of has_many relations, e.g. to CustomerCountry and CustomerSetting. Often, we need to join these relations to each other; e.g. to find the settings of ...
2
votes
5answers
346 views

How to exclude rows that don't join with another table?

I have two tables, one has primary key other has it as a foreign key. I want to pull data from the primary table, only if the secondary table does not have an entry containing it's key. Sort of an ...
2
votes
1answer
243 views

SQL Join to return null rows from both left and right table [closed]

Possible Duplicate: MySQL: FULL OUTER JOIN - How do I merge one column? Real simple question, but have completely confused myself. Say I have the following tables: tbl1 id - count1 a - ...
1
vote
4answers
68 views

Save scores of 3 players per game into PostgreSQL

I'm trying to save scores of card game matches (always with 3 players) into PotsgreSQL 8.4.9 I have almost everything there (s. below please) just 2 minor parts are missing. As first I'm trying to ...
1
vote
2answers
100 views

Is this good Database Normalization?

I am a beginner at using mysql and I am trying to learn the best practices. I have setup a similar structure as seen below. (main table that contains all unique entries) TABLE = 'main_content' ...
1
vote
4answers
21 views

MYSQL : Problem in writing where clause according to scenario

I have a DB (user_interests) set up with 3 fields: i_id (unique), interest_id, uid. Then a second DB (interests) set up with the interests: interest_id (unique), interest_name I'd like to do an SQL ...
1
vote
4answers
419 views

PostgreSQL join question: delete records present in one table, but not another

I have a Drupal website embedding a Flash game. The registered website users are listed in the drupal_users table - here the list of those, registered over a week ago: # select uid, created from ...
1
vote
1answer
45 views

what is optimized for a faster database query, using JOINS or a seperate table with all relevant data

I'm trying to make my vCard and it pretty much has redundant information. Like my name, number, website, company name, my title (or in my case my group name title) These values exists in a few tables ...
1
vote
3answers
108 views

SQL update query returning an error

I am getting an error when running an UPDATE statement: Only one expression can be specified in the select list when the subquery is not introduced with EXISTS when I attempt to execute this ...
1
vote
3answers
118 views

Fetch Max from a date column grouped by a particular field

I have a table similar to this: LogId RefId Entered ================================== 1 1 2010-12-01 2 1 2010-12-04 3 2 2010-12-01 4 2 2010-12-06 5 ...
1
vote
3answers
75 views

Fetch last item in a category that fits specific criteria

Let's assume I have a database with two tables: categories and articles. Every article belongs to a category. Now, let's assume I want to fetch the latest article of each category that fits a ...
1
vote
1answer
66 views

SQL Joins Excluding Data

Say I have three tables: Fruit (Table 1) ------ Apple Orange Pear Banana Produce Store A (Table 2 - 2 columns: Fruit for sale => Price) ------------------------- Apple => 1.00 Orange => ...
0
votes
0answers
37 views

mysql conditional join depends on a column

I'm trying to implement a generic notification system.. I have a data structure like this; notification_base:id,type,object notificiation_sub:id,user_id,not_base_id,lastNotifyTime ...
0
votes
3answers
117 views

Simple SQL to check if parent has any child rows or not

I show a grid with parent data and need to show icon if it has a relevant child row(s) exist. My DB is in SQL Server 2008. Let me simplify, I've the following two tables - Order (PK : ID) ...
0
votes
2answers
64 views

mysql count subtables and its subtables for its main table

Table 1 - Category id | name Table 2 - subcat id | cid(category.id) | name Table 3 - products id | cid(category.id) | sid(subcat.id) | name select a.* , count(b.id) as total from ...
0
votes
4answers
44 views

SQL:Query to check if a column meets certain criteria, if it does perform one action if it doesn't perform another

I have found it quite hard to word what I want to do in the title so I will try my best to explain now! I have two tables which I am using: Master_Tab and Parts_Tab Parts_Tab has the following ...
0
votes
1answer
41 views

Finding a record in one of 2 tables

In PostgreSQL 8.4.8 database I have 2 tables: noreset and track. They have exactly same column names and contain records identified by unique id. A record can be present only in one of the tables, ...
0
votes
2answers
166 views

SQL Advanced SELECT query question

I have three tables, which, among other things contain: CustomerOrder --- idOrder TableNumber OrderStatus -------- Menu idMenu Name MenuItemOrdered ------------ idMenuItemOrdered MenuID OrderID ...
0
votes
4answers
78 views

SQL Server 2005 - Join does not terminate - Speed issue?

does anybody have an idea why this join operation does not terminate: SELECT * FROM (SELECT LOWER([Computer Name]) AS 'cname' FROM table1) AS export, (SELECT AssetID AS 'CCID', Hostname AS 'cname' ...
0
votes
5answers
184 views

Complex SQL Join help!

(For a quick recap please see sections titled , DATA. Can only get results in FIGURE A, and FIGURE B, what I want is DESIRED RESULTS, tried everything posted in the answers section.) All, I have been ...
0
votes
3answers
96 views

Problem with duplicates in a SQL Join

I have the following result set from a join of three tables, an articles table, a products table, an articles to products mapping table. I would like to have the results with duplicates removed ...
0
votes
2answers
292 views

Updating joined queries with ADO

I have a select query that joins 3 tables to display information. If I want to update a field is do ADOQuery.Edit. <Set fields Values> ADOQuery.Post. I get the following error howwever ...
0
votes
4answers
175 views

SQL join on many queries

I have a table with a structure such as table(PK, a, b, c, d, e, f, g). And I have many queries that I want to join: select PK, sum(c) where... JOIN select PK, sum(e) where... JOIN select PK, ...