Basically SQL UPDATE statement is worked on WHERE condition. if you not give any where condition, it will update all rows.
UPDATE table SET field=value WHERE status=AVAILABLE LIMIT 1
OR
SET ROWCOUNT 1
Update workq set status = 1
OR
Update workq set status = 1
Where ID = (Select Top 1 ID from workq)