--- title: AlaSQL pagination_prev: demos/desktop/index pagination_next: demos/local/index sidebar_custom_props: sql: true ---
import current from '/version.js'; AlaSQL is a pure JavaScript in-memory SQL database. It has built-in support for SheetJS through the `XLSX` target operator. This demo covers basic concepts pertaining to data import and export. The official documentation includes advanced examples and deployment tips as well as strategies for general data processing in AlaSQL expressions. :::note This demo was tested in the following environments: | Environment | AlaSQL | Date | |:--------------------|:-------|:----------:| | NodeJS | 3.1.0 | 2023-02-23 | | Standalone (Chrome) | 3.0.0 | 2023-04-09 | ::: ## Live Demo This demo fetchesURL: {url}
Import: {q1}
Export: {q2}
    | Index | Nom | 
|---|---|
| {Index} | {Nom} | 
{`\
{
  /* add this part before "name" */
  /* highlight-start */
  "overrides": {
    "xlsx": "https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz"
  },
  /* highlight-end */
  "name": "my-project",
  /* ... more fields ... */
`}
{`\
{
  "overrides": {
    "xlsx": "https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz"
  }
}`}