From 34dba6c2fef98e7a640e5734e732abe0e05550f5 Mon Sep 17 00:00:00 2001 From: Jingguo Yao Date: Fri, 22 Apr 2016 18:08:46 +0800 Subject: [PATCH] remove useless text --- _docs/query-data/030-querying-hbase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/query-data/030-querying-hbase.md b/_docs/query-data/030-querying-hbase.md index 525bc2d221f..66d612d5764 100644 --- a/_docs/query-data/030-querying-hbase.md +++ b/_docs/query-data/030-querying-hbase.md @@ -140,7 +140,7 @@ steps: CONVERT_FROM(students.account.name, 'UTF8') AS name, CONVERT_FROM(students.address.state, 'UTF8') AS state, CONVERT_FROM(students.address.street, 'UTF8') AS street, - CONVERT_FROM(t.students.address.zipcode, 'UTF8') AS zipcode + CONVERT_FROM(students.address.zipcode, 'UTF8') AS zipcode FROM students; {% include startnote.html %}Use dot notation to drill down to a column in an HBase table: tablename.columnfamilyname.columnnname{% include endnote.html %}