Escaping db.table references
You need to change queries that use db.table references to prevent Hive from interpreting the entire db.table string as the table name.
You need to change queries that use db.table references to prevent Hive from interpreting the entire db.table string as the table name.
math.students
appears in a CREATE TABLE statement.
CREATE TABLE `math`.`students` (name VARCHAR(64), age INT, gpa DECIMAL(3,2));