标签: sql hive hiveql
如何在hive sql中转义@?
例如:
grant admin to USER presto@EXAMPLE.COM
将失败并显示错误:
FAILED: ParseException line 1:26 character '@' not supported here
答案 0 :(得分:1)
使用`(反引号)转义 @ 。
命令:
grant admin to USER `presto@EXAMPLE.COM`