Drop Table

Support Forum for database administrators and web based access to important newsgroups related to databases
Register on Database Support Forum Edit your profileCalendarFind other Database Support forum membersFrequently Asked QuestionsSearch this forum -> 
For Database admins: Free Database-related Magazines Now Free shipping to Texas


Post New Thread










Thread
Author

A query that chooses non-matching items
I've never been the most articulate person in the world, so i though
the best way to illustrate the script I am looking for help with, is to
provide you with two tables and the results I require.

Table 1
 ProductName1	Product
Name2	Qty
AA	AA-1	2
BB	BB-1	3
CC	CC-1	4


Table2
ProductName	Qty
AA	2
BB-1	3
DD	6


Desired Results=09
ProductName	Qty
DD	6
=09

Regards,
Ciar=E1n


Report this thread to moderator Post Follow-up to this message
Old Post
chudson007@hotmail.com
04-27-05 12:23 PM


Re: A query that chooses non-matching items
(chudson007@hotmail.com)  writes:
> I've never been the most articulate person in the world, so i though
> the best way to illustrate the script I am looking for help with, is to
> provide you with two tables and the results I require.
>
> Table 1
> ProductName1     ProductName2     Qty
> AA     AA-1     2
> BB     BB-1     3
> CC     CC-1     4
>
>
> Table2
> ProductName     Qty
> AA     2
> BB-1     3
> DD     6
>
>
> Desired Results
> ProductName     Qty
> DD     6

SELECT t2.ProductName, t2.Qty
FROM   Table2 t2
WHERE  NOT EXISTS (SELECT *
FROM   Table1 t1
WHERE  t1.ProductName2 = t2.ProductName
AND  t1.Qty = t2.Qty)

Or somesuch depending on your exact definition of "matching".


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techin.../2000/books.asp

Report this thread to moderator Post Follow-up to this message
Old Post
Erland Sommarskog
04-27-05 02:23 PM


Sponsored Links





Last Thread Next Thread
Post New Thread

Microsoft SQL Server forum archive

Show a Printable Version Email This Page to Someone! Receive updates to this thread
Microsoft SQL Server
Access database support
PostgreSQL Replication
SQL Server ODBC
FoxPro Support
PostgreSQL pgAdmin
SQL Server Clustering
MySQL ODBC
Web Applications with dBASE
SQL Server CE
MySQL++
Sybase Database Support
MS SQL Full Text Search
PostgreSQL Administration
SQL Anywhere support
DB2 UDB Database
Paradox Database Support
Filemaker Database
Berkley DB
SQL 2000/2000i database
ASE Database
Forum Jump:
All times are GMT. The time now is 09:13 PM.

 
Mobile devices forum | Database support forum archive




Copyrights DropTable.com Database Support Forum 2004 - 2006