Saved Bookmarks
| 1. |
How To Insert Records In Apache Tajo? |
|
Answer» To INSERT records in the 'test' table, type the following query. db sample> insert OVERWRITE into test select * from MYTABLE; To insert records in the 'test' table, type the following query. db sample> insert overwrite into test select * from mytable; |
|