File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -63,29 +63,29 @@ An Apache HBase cluster on HDInsight. See [Get started with Apache HBase](./apac
63
63
64
64
``` sql
65
65
%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 );
68
68
```
69
69
70
70
1 . Query the table.
71
71
72
72
``` sql
73
73
%jdbc(phoenix)
74
- SELECT * FROM dbo . Company ;
74
+ SELECT * FROM Company;
75
75
```
76
76
77
77
1 . Delete a record.
78
78
79
79
``` sql
80
80
%jdbc(phoenix)
81
- DELETE FROM dbo . Company WHERE COMPANY_ID= 1 ;
81
+ DELETE FROM Company WHERE COMPANY_ID= 1 ;
82
82
```
83
83
84
84
1 . Drop the table.
85
85
86
86
``` sql
87
87
%jdbc(phoenix)
88
- DROP TABLE dbo . Company ;
88
+ DROP TABLE Company;
89
89
```
90
90
91
91
## Next steps
You can’t perform that action at this time.
0 commit comments