I have a query that checks if we've made sales of a particular stock item
select * from merchand_history where stock_code = 'zzz007' and create_timestamp >= getdate() order by create_timestamp desc
I'd like to have a sql job that emails a user (I guess using the alert mechanism) but only if there are rows returned by that query.
I can't think how to do this and submit to the hivemind. I really need a sql only solution...
Try building a stored procedure something like below and schedule it to run as a job: