# SQLite 指令

基本操作

```SQL
sqlite> .help
sqlite> .exit
```

查詢

```SQL
sqlite> select * from tab_name;
```

資料表結構

```SQL
sqlite> .schema tab_name;
```