Skip to content

Commit 10b08b1

Browse files
Merge pull request #228637 from RamanathanChinnappan-MSFT/patch-35
(AzureCXP) fixes MicrosoftDocs/azure-docs#105694
2 parents 4b9d9c9 + 325414e commit 10b08b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/hdinsight/hbase/apache-hbase-phoenix-zeppelin.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,29 +63,29 @@ An Apache HBase cluster on HDInsight. See [Get started with Apache HBase](./apac
6363

6464
```sql
6565
%jdbc(phoenix)
66-
UPSERT INTO dbo.Company VALUES(1, 'Microsoft');
67-
UPSERT INTO dbo.Company (name, company_id) VALUES('Apache', 2);
66+
UPSERT INTO Company VALUES(1, 'Microsoft');
67+
UPSERT INTO Company (name, company_id) VALUES('Apache', 2);
6868
```
6969

7070
1. Query the table.
7171

7272
```sql
7373
%jdbc(phoenix)
74-
SELECT * FROM dbo.Company;
74+
SELECT * FROM Company;
7575
```
7676

7777
1. Delete a record.
7878

7979
```sql
8080
%jdbc(phoenix)
81-
DELETE FROM dbo.Company WHERE COMPANY_ID=1;
81+
DELETE FROM Company WHERE COMPANY_ID=1;
8282
```
8383

8484
1. Drop the table.
8585

8686
```sql
8787
%jdbc(phoenix)
88-
DROP TABLE dbo.Company;
88+
DROP TABLE Company;
8989
```
9090

9191
## Next steps

0 commit comments

Comments
 (0)