Hi There,

I'm running a simple Snowsql query which contains the DDL commands and also some tables, but the Analyzer is not giving the count of any.

ex query: 

CREATE OR REPLACE TABLE DEMO_DB.PUBLIC.CUSTOMERS (
CUSTOMER_ID INTEGER,
CUSTOMER_NAME STRING,
COUNTRY STRING,
CREATED_AT TIMESTAMP,
UPDATED_AT TIMESTAMP
);

-- Create a view
CREATE OR REPLACE VIEW DEMO_DB.PUBLIC.CUSTOMERS_US AS
SELECT *
FROM DEMO_DB.PUBLIC.CUSTOMERS
WHERE COUNTRY = 'USA';

Here I'm getting the Analyzer output as: