I need help again. I'm struggling with Impala and want to know, if the GO-command exists also for Impala? I need to run multiple queries after each other. Google does not provide any answer and in the official documentation there is nothing stated. But I want to be sure that there is really no possibility.
For example:
USE [DATABASE]
GO
-- Delete Table A
DROP TABLE [dbo].[A]
GO
-- Delete Table B
DROP TABLE [dbo].[B]
Thanks.
What works: Copy each query, terminate each with a semicolon and after that just mark everything with control and hit the run button