count: 300

tmp_sql: SELECT *
				FROM transcriptions
				WHERE status = 'PENDING'
				
				ORDER BY datetime_created DESC
				LIMIT 500000
				;

tmp_sql: SELECT *
				FROM transcriptions
				WHERE status = 'PENDING'
				
				ORDER BY datetime_created ASC
				LIMIT 500000
				;

tmp_sql: SELECT *
			FROM transcriptions
			WHERE status = 'PENDING'
			AND duration_seconds < 18000
			ORDER BY datetime_created DESC
			
			;

tmp_sql: TRUNCATE TABLE transcription_queue;

update: 1

count_all: 0

done