I have these two select statements that are pulling back the same number or rows from these two tables. This IS what i expected. Select * from offense.dbo.OFF_PRP where OFFENSENO like '%824744' order by UniquekeySelect * from Douglasconversion.dbo.propertysheetdata where CFSID = '824744' order by Uniquekey
I'm being asked to verify the data further by showing, via an inner join, that the column named "Quantity" in both tables has the same value when compared against the Uniquekey value in both tables. What i should be showing is a resultset with nothing in it when i ask for any columns between the two tables where Quantity<>Quantity.Below is what i'm using, but i'm not getting very far:Select a.* from offense.dbo.OFF_PRP awhere a.QUANTITY<>b.QuantityInner Join Douglasconversion.dbo.propertysheetdata bOn a.uniquekey = b.uniquekey