I have a table with these 3 columns: task (string) status (string) date (datetime) I want to write a query that does the following: Selects the first row WHERE status != “In-Progress” Sorted by Date (oldest first), and Locks it – so other computers running this query concurrently can’t read it. Updates the Status column so status = “In-Progress”. Return