I am trying to drop multiple tables in databrick scala using the following command
select 'DROP TABLE ' + tableName from ABC where tableName LIKE 'in%'
Error results saying
Error in SQL statement: AnalysisException: Table or view not found: ABC
However the ABC database is present
Thank you
%
characters was used... – Stalemate