blob: 0e949a6ba3f3e6efdc7659a640183ee604f34371 [file] [view]
---
title: "INSERT"
---
## Basic syntax
Basic syntax:
```sql
INSERT [INTO] tbl_name
[(col_name [, col_name] ...)]
{ {VALUES | VALUE} (value_list) [, (value_list)] ... }
```
`INSERT` inserts new rows into a HoraeDB table. Here is an example:
```sql
INSERT INTO demo(`time_stammp`, tag1) VALUES(1667374200022, 'horaedb')
```