Having following query:
select table_name from user_tables where table_name in (\'A\',\'B\',\'C\',\'D\',\'E\',\'F\');
Assuming only user_tables
You can't. These values have to be entered into a temporary table at the least to do the desired operation. Also Oracle's IN clause list cannot be huge (i.e, not more than 1000 values).