Not. The transaction log does not record requests at all. It simply records the information needed to fast forward or roll back transactions (and the SELECT query does not generate any logged actions)
You may try
select top 100 * from sys.fn_dblog(default,default)
to look at the material recorded.
If you need this information, you will need to set up a trace / extended events / audit sessio n session to record it. This can be prohibitively heavy in most environments.
You can use the following to get a general idea of ββwhat adhoc requests are running.
SELECT text from sys.dm_exec_cached_plans cross apply sys.dm_exec_sql_text(plan_handle) where objtype='Adhoc'
source share