AlaSQL / alasql

AlaSQL.js - JavaScript SQL database for browser and Node.js. Handles both traditional relational tables and nested JSON data (NoSQL). Export, store, and import data from localStorage, IndexedDB, or Excel.
http://alasql.org
MIT License
6.96k stars 651 forks source link

Does alasql have the MOD function (find a remainder after division) #1917

Closed pushkarone closed 2 months ago

pushkarone commented 2 months ago

AlaSQL is based on unpaid voluntary work. Thank you for taking the time to make it better.

Got ChatGPT?


Question about how to...


Something is not working as expected:

pushkarone commented 2 months ago

Does alasql have the MOD function (find a remainder after division)

mathiasrw commented 2 months ago
var result = alasql('SELECT VALUE MOD(10, 3)'); 
console.log(result); // Output: 1