Final answer:
To count declined purchase encounters, a COUNT query is used. For the list of salespeople encountering customers with low income or poor credit, a JOIN is implemented along with GROUP BY and ORDER BY clauses, filtering according to income and credit conditions.
Step-by-step explanation:
To count how many encounters resulted in the customer declining a purchase, you could use a query similar to the following:
SELECT COUNT(*) FROM Encounters WHERE outcome = 'Declined'
Note: The actual table and column names might vary and should be replaced with the correct names from your database.
To create a list of salespeople with the number of encounters they've had with customers with low annual income or poor credit ratings, use this query:
SELECT sFirstName, sLastName, COUNT(*) as encounter_count
FROM Encounters
JOIN Customers ON Encounters.customerID = Customers.customerID
JOIN Salespeople ON Encounters.salespersonID = Salespeople.salespersonID
WHERE annualIncome <= 25000
OR creditDescription IN ('Very Poor', 'Extremely Poor')
GROUP BY sFirstName, sLastName
ORDER BY sLastName;
This query joins the necessary tables, filters by the specified conditions for income and credit rating, groups by salesperson, and orders the results.