This tutorial will show you some common usage for creating views. If you have no installed Hive yet please follow this tutorial.
Create View:
CREATE VIEW IF NOT EXISTS test_view AS SELECT * FROM test;
Drop View:
DROP VIEW IF EXISTS test_view;
A place for tutorials on programming and other such works.
This tutorial will show you some common usage for creating views. If you have no installed Hive yet please follow this tutorial.
Create View:
CREATE VIEW IF NOT EXISTS test_view AS SELECT * FROM test;
Drop View:
DROP VIEW IF EXISTS test_view;