Key columns to consider are job_creation_time,job_type,and statement_type.
There is no specific column indicating whether a job was “successful,” you can use the state column to check if the job is PENDING, RUNNING, or DONE. Additionally, you may include other column names based on your needs.
Below is an example SQL query:
SELECT
COUNT(*) AS totalNumber_select_queries
FROM
`PROJECT_ID.region-REGION_NAME.INFORMATION_SCHEMA.JOBS_TIMELINE`
WHERE
job_creation_time >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL #set DAY)
AND state = 'DONE'
AND job_type = 'QUERY'
AND statement_type = 'SELECT'
You can check this function under SQL BigQuery for more information.