The TS_TYPE column in the TEST table displays the type. The following query will generate an excel report in the Analysis View module. You may need to edit the query to meet your specific needs depending on the test type. To create the excel report, you will need to make sure that the ENABLE_CREATE_LEGACY_EXCEL_REPORT parameter has been added in Site Admin. Next, you will need to access the Analysis View module. In the Analysis View module, click the drop down on the green plus button and select 'New Excel Report'. After you have named the excel report, enter the SQL query posted below into the Query1 text box and click 'Generate'. Select a save location for the excel report, click Save, and the excel report will open. If for some reason it doesn't open automatically, you can open from where it was saved. Hope this helps.
SELECT
TS_NAME,
TS_SUBJECT,
TS_STATUS,
TS_RESPONSIBLE,
TS_CREATION_DATE,
TS_DESCRIPTION,
TS_TYPE,
TS_EXEC_STATUS
FROM TEST
WHERE TS_TYPE = 'QUICKTEST_TEST'