0
votes
1answer
43 views

SQL query optimisation / refactoring

Just wondering can anyone see a neater way to write this query. It seems like a lot of repetition to me but I can't see an easier way to write it. It is pulling back Year-to-date data. Output looks ...
0
votes
1answer
55 views

How to eliminate duplicate rows joining on tables across databases?

I have been working on this script for a while and have reached a dead end. The script works but unfortunately produces duplicates. My script joins two different tables across databases on a ...
1
vote
1answer
67 views

how h can true join in examples?

I have the following query which does not give the expected result: SELECT "invoice"."ITEMNO", "invoice"."Outgoing", "storeage"."incoming" FROM "MVXJDTAP"."MVXJDTA"."invoice" INNER JOIN ...
0
votes
2answers
31 views

SQL Server outer join issue

I'm having a bit of trouble getting an outer join to work: I've had them work as I expected in MS Access in the past, but getting a similar thing happening in SQL Server is giving me issues. I have a ...
1
vote
2answers
136 views

Self join with inner and outer join query

I have a table that is set up so that one column (attribute) contains information like first name, last name, account number and any other information related to a thing in the database. Another ...
1
vote
1answer
457 views

TSQL query to merge data from multiple tables that may or may not have matching rows?

For example, suppose we're conducting research where students can take up to 10 different tests, and each table in the database stores all the students' responses for one test. The tables are named ...
1
vote
1answer
41 views

JOIN Problems with SQL Server

I have table (user_page_cells) displayed with the following query: SELECT tag_id, nid FROM user_page_cells WHERE nid = 1; It gives me the results: I also have a table (graph_tags): SELECT * ...
-1
votes
2answers
50 views

inner join on different qaunties

i have two Identical tables in my SQL database these tables consist of Item Code and QTY each. I need to see which items in both tables that have different quantities AND the items that don't ...
1
vote
2answers
158 views

SQL Outer Join Time Replace Null Values

(SQL SERVER 2008) I have timestamped records in multiple tables to join to a master/base table. The timepoints are sometimes equal to the base table, but sometimes not. Code to create tables: ...
1
vote
1answer
102 views

Right Outer Join Issue in a CTE

Ultimately I'd like my end result to look like the following: ReportingDate FundCode FundName AssetClass Rank Percentage ...
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 ...
0
votes
1answer
89 views

How show datetime select only in Sql Server?

I need show datetime when I select datetime only. Because I try to run SQL but show all datetime. Table Emp: EmpNo fullName 00001 Midna 00002 Klog 00003 Porla 00004 Seka 00005 Mila ...
2
votes
2answers
98 views

Multiple outer joins that can include empty subset

I have a table of objects and an attribute table containing a variety of attributes which an object may or may not have. I want to get all the attributes along with the object, or null if it doesn't ...
0
votes
2answers
5k views

LEFT OUTER JOIN 3 tables

I'm updating queries that were using the old construction for outer joins (=* and *=). I have 3 tables that I need to include in an outer join. The original query is: SELECT s.SkillID , ...
2
votes
2answers
369 views

Sql server combine multiple data sets without duplicate data

Given three tables Ta, Tb, Tc: Ta(ID, Field1) Tb(ID, Field2) Tc(ID, Field3) Given data example: Ta ID Field1 --------- 1 A 1 B Tb ID Field2 --------- 1 C 1 D 2 E Tc ID Field3 --------- 1 F ...
0
votes
2answers
277 views

SQL: Join Parent - Child tables

I'm building a simple review website application and need some help with SQL Query. There are 3 tables (Topics, Comments, Users). I need a SQL query to select the data from all 3 tables. The ...
1
vote
1answer
268 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 = ...
0
votes
2answers
670 views

SQL Server with left join/having sum/group by

Table B holds planned values. Table M hold actual values. I need to find all rows in table B where either there is no actual values (ie. joined) row in table M, or where joined rows have different ...
1
vote
2answers
298 views

How do I convert this Informix nested join to a tsql nested join?

I'm having a real hard time with this conversion. Those nested OUTER joins are a first to me. Original Informix query: from ttdpur401105 tdpur401 , ttdpur400105 tdpur400 -- Problem is here , ...
3
votes
1answer
269 views

Alternatives to a self FULL OUTER JOIN to obtaint match between two entries

in my db model I have two entities: Entitlement and Entitlement_Data. Each Entitlement is identified by an incrementing ID (IDENTITY), and can have multiple Entitlement_Data entries, each with a ...
0
votes
2answers
411 views

How can I optimize this SQL outer join query?

SCENARIO I need to select records from test_userData based on a 1-to-1 match from test_userCheck on the columns customer or account_info. The code below will create a mock-up of the tables and will ...
2
votes
6answers
141 views

AND syntax in outer join?

this is a small piece of a much larger query that I have discovered is a problem. I'm trying to add a filter to my outer join in addition to the primary key. The problem is that I'm receiving ...
-6
votes
1answer
341 views

Sql server Left outer join VS. Left inner join? ;-) [closed]

I just need somebody to answer the above question? Thank you
0
votes
2answers
142 views

How to implement an 'outer join' relationship in SQL Server?

This is a question that's probably going to incur the wrath of some DBA types but I'm gonna ask it anyway!! I have a SQL Server DB and we are adding a new table which is basically going to act as a ...
0
votes
1answer
255 views

SQL view, performance and count from one-to-many relationship

I need some help with forming basic SQL-VIEWs for a bunch of my tables. Here's a quick overview I've a ClaimDetail table and it has got some Lookup fields like StatusID, BrandID, SalespersonID, ...
3
votes
2answers
6k views

how to search Sql Server 2008 R2 stored procedures for a string?

I'm migrating a legacy SQLS2k to 2008R2, and it seems all data access was done through stored procs, and any custom queries use the legacy *= =* outer join syntax. There are upwards of a hundred ...
0
votes
1answer
293 views

Left outer join query

in Image table - 1 is table with Primery key ID autonumber and DeclarationContentId as FK from another table. There are two column GrantedAmount and DeclaredAmount Identified by the another column ...
1
vote
3answers
299 views

Is a FULL OUTER JOIN neccessary for this situation?

I'm trying to find an alternative to using a FULL OUTER JOIN for a stored procedure I am writing. Here's the scenario. Two tables of mostly unrelated data representing events that need to occur. The ...
5
votes
2answers
1k views

Cross join behaviour (SQLServer 2008)

I have been trying to track down a problem with a query I have. The query is actually generated by hibernate from HQL but the resulting SQL doesn't do what I expect. Modifying the SQL slightly ...
0
votes
1answer
2k views

Using Joined-Tables to exclude certain records

I have a SQL Server 2005 table (#1) that list employee names, and various info about each of them. I have a second table (#2) that lists some of the employees that I wish to exclude from my results. ...
1
vote
4answers
123 views

SQL Joins : in, out, shake it all about

I am performing the follwing sql to return a data where there is a match of both dob and address in tables1 & 2. select table1.dob , table1.address , sum(case when person_status in ('A','B','C') ...
0
votes
3answers
5k views

SQL Alias of joined tables

I have a query like this: select a1.name, b1.info from (select name, id, status from table1 a) as a1 right outer join (select id, info from table2 b) as b1 on (a1.id ...
7
votes
4answers
2k 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 ...
1
vote
2answers
105 views

ms access / sql server syntax (i guess)

this query: SELECT sentmails.[VersandDatum], sentmails.[DatumMailGeplant], mailintervals.[Interval], definitions.[Subject], users.[Name], sentmails.[MailArt], ...
0
votes
2answers
563 views

How can I do a left outer join where both tables have a where clause?

Here's the scenario: I have 2 tables: CREATE TABLE dbo.API_User ( id int NOT NULL, name nvarchar(255) NOT NULL, authorization_key varchar(255) NOT NULL, is_active bit NOT NULL ...
17
votes
4answers
9k views

top 1 with a left join

Given the query below there might be multiple rows in dps_markers with the same marker key but we only want to join against the first. If I take this query and remove the top 1 and ORDER BY I get a ...
1
vote
3answers
899 views

SQL Server 2005 - Order of Inner Joins

I have a query containing three inner join statements in the Where clause. The query takes roughly 2 minutes to execute. If I simply change the order of two of the inner joins, performance drops to 40 ...
3
votes
1answer
720 views

Is FULL OUTER JOIN really such a bad thing here?

In general, I believe "FULL OUTER JOIN Considered Harmful", to turn the phrase. Background: http://weblogs.sqlteam.com/jeffs/archive/2007/04/19/Full-Outer-Joins.aspx But I do have a specific ...
0
votes
4answers
1k views

SQL grouping aggregate for different values

I have a database table that looks like: ForeignId: int Key: varchar Value: varchar Where ForeignId and Key constitute a unique primary key I can easily determine the total set of keys defined for ...
1
vote
6answers
2k views

Need to speed up this query in SQL Server

SELECT pe.prodtree_element_id prodID, pe.prodtree_element_name_s, li.line_name, av2.value FROM prodtree_element pe LEFT JOIN prodtree_link pl ON pe.prodtree_element_id = ...