- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Inserting data in table in SAP HANA
Like other database, you can insert rows in column based table in SAP HANA using Insert statement. Insert statement can be written in SQL editor in HANA.
To open SQL editor, you can select HANA system and click on SQL sign at top.
Below SQL statements can be used to insert the data −
INSERT INTO TEST.PROD_DESC VALUES (11,’E’,’Table’); INSERT INTO TEST.PROD_DESC VALUES (11,’D’,’Chair’); INSERT INTO TEST.PROD_DESC VALUES (14,’E’,’32 LED’); INSERT INTO TEST.PROD_DESC VALUES (14,’D’,’32 inch LCD’); INSERT INTO SAP_STUDENT.PRODUCT_DESC VALUES (25,’E’,’Comp Table’); INSERT INTO SAP_STUDENT.PRODUCT_DESC VALUES (25,’E’,’Mixer’);
- Related Articles
- Inserting data in a table in SAP HANA
- Inserting an Array to a table in SAP HANA database
- Viewing data in a table in SAP HANA database
- Table type while importing data from flat file in SAP HANA
- Data compression in SAP HANA
- Viewing table definition in SAP HANA
- Table mapping while data replication from flat file in SAP HANA database
- SQL statement to add a table as Virtual table in SAP HANA Smart Data Access
- Data Compression in SAP HANA system
- Data Replication techniques in SAP HANA
- Generating time data in SAP HANA
- Data Preview option in HANA Modeling view in SAP HANA
- Create table SQL query in SAP HANA
- Default table type in SAP HANA database
- Creating column table in SAP HANA database

Advertisements