rawsql-ts is a high-performance SQL parser and AST transformer library written in TypeScript. It empowers you to represent raw SQL as objects, enabling flexible manipulation of SQL statements directly within your program. This object-oriented approach allows for partial transformation, decomposition into manageable components, and recombination as needed, dramatically improving the maintainability and reusability of complex SQL.
It is designed for extensibility and advanced SQL analysis, with initial focus on PostgreSQL syntax but not limited to it. The library enables easy SQL parsing, transformation, and analysis for a wide range of SQL dialects.
Note
This library is currently in beta. The API may change until the v1.0 release.
This is a monorepo containing multiple packages:
- rawsql-ts - Core SQL parsing and transformation library
Additional integration packages will be added in the future.
- Zero dependencies: fully self-contained and lightweight
- High-speed SQL parsing and AST analysis (over 3x faster than major libraries)
- Rich utilities for SQL structure transformation and analysis
- Advanced SQL formatting capabilities, including multi-line formatting and customizable styles
- Dynamic SQL parameter injection for building flexible search queries with
SqlParamInjector
(supports like, ilike, in, any, range queries, OR/AND conditions and more) - Dynamic ORDER BY clause injection with
SqlSortInjector
for flexible sorting with support for ASC/DESC, NULLS positioning, and append mode - Dynamic LIMIT/OFFSET pagination injection with
SqlPaginationInjector
for efficient data pagination with page-based and offset-based support - Type-safe schema management and JSON mapping conversion with full TypeScript support
- Static query validation and regression testing against your database schema with
SqlSchemaValidator
, enabling early error detection and robust unit tests for schema changes.
Note
The "Mean" column represents the average time taken to process a query. Lower values indicate faster performance. For more details, see the Benchmark.
You can use rawsql-ts directly in modern browsers via CDN (unpkg/jsdelivr)! No Node.js dependencies, no build tools required. Just import it like this:
<!-- Always get the latest version -->
<script type="module">
import { parse } from "https://unpkg.com/rawsql-ts/dist/esm/index.js";
</script>
<!-- Pin a specific version for stability -->
<script type="module">
import { parse } from "https://unpkg.com/rawsql-ts@0.1.0-beta.12/dist/esm/index.js";
</script>
npm install rawsql-ts
Kickstart your project by dynamically injecting parameters with SqlParamInjector
for flexible query generation right from the start!
import { SqlParamInjector, SqlFormatter } from 'rawsql-ts';
// Define a base SQL query with an alias
const baseSql = `SELECT u.user_id, u.user_name, u.email, u.phone FROM users as u WHERE u.active = TRUE`;
// Search parameters with OR conditions and AND combination
const searchParams = {
name_or_email: {
or: [
{ column: 'user_name', ilike: '%alice%' },
{ column: 'email', ilike: '%alice%' }
]
},
phone: { like: '%080%' } // AND condition
};
const injector = new SqlParamInjector();
// Dynamically inject searchParams into the baseSql
const query = injector.inject(baseSql, searchParams);
// Format the dynamically generated query
const formatter = new SqlFormatter({ preset: 'postgres' });
const { formattedSql, params } = formatter.format(query);
console.log('Generated SQL:');
console.log(formattedSql);
// Output:
// select "u"."user_id", "u"."user_name", "u"."email", "u"."phone"
// from "users" as "u"
// where "u"."active" = true
// and ("u"."user_name" ilike :name_or_email_or_0_ilike
// or "u"."email" ilike :name_or_email_or_1_ilike)
// and "u"."phone" like :phone_like
console.log('Parameters:');
console.log(params);
// Output: { name_or_email_or_0_ilike: '%alice%', name_or_email_or_1_ilike: '%alice%', phone_like: '%080%' }
rawsql-ts provides robust parsers for SELECT
, INSERT
, and UPDATE
statements, automatically handling SQL comments and providing detailed error messages. By converting SQL into a generic Abstract Syntax Tree (AST), it enables a wide variety of transformation processes.
import { SelectQueryParser } from 'rawsql-ts';
const sql = `SELECT id, name FROM products WHERE category = 'electronics'`;
const query = SelectQueryParser.parse(sql);
// query object now holds the AST of the SQL
For more details on SelectQueryParser
, see the SelectQueryParser Usage Guide.
The SqlFormatter
class is the recommended way to format SQL queries, offering advanced capabilities like indentation, keyword casing, and multi-line formatting.
It also allows for detailed style customization. For example, you can define your own formatting rules:
import { SelectQueryParser, SqlFormatter } from 'rawsql-ts';
const customStyle = {
identifierEscape: {
start: "",
end: ""
},
parameterSymbol: ":",
parameterStyle: "named",
indentSize: 4,
indentChar: " ",
newline: "\n",
keywordCase: "lower",
commaBreak: "before",
andBreak: "before"
};
const sqlToFormat = `SELECT u.user_id, u.user_name FROM users as u WHERE status = :active ORDER BY created_at DESC;`;
const queryToFormat = SelectQueryParser.parse(sqlToFormat);
const customFormatter = new SqlFormatter(customStyle);
const { formattedSql: customFormattedSql } = customFormatter.format(queryToFormat);
console.log(customFormattedSql);
/*
select
u.user_id
, u.user_name
from
users as u
where
status = :active
order by
created_at desc;
*/
For more details, see the SqlFormatter Usage Guide.
The SqlParamInjector
class revolutionizes how you build dynamic search queries. Instead of manually constructing different SQL statements for various search conditions, you simply provide a fixed base SQL and a state object. SqlParamInjector
then dynamically injects parameters and automatically generates the optimal WHERE conditions.
Key benefits include:
- Simplified Query Management: Prepare a single base SQL;
SqlParamInjector
handles the variations. - Effortless Optimal Queries: Just pass a state object, and it generates a highly efficient query.
- Performance-Oriented: Conditions are intelligently inserted as close to the data source as possible, significantly improving query performance by filtering data early.
- Zero Conditional Logic in Code: Forget writing complex IF statements in your application code to handle different filters.
- Enhanced SQL Reusability: Your base SQL remains clean and can be reused across different scenarios with varying search criteria.
- Rich Operator Support: Supports various SQL operators including equality, comparison, range (min/max), pattern matching (like/ilike), IN clauses, and PostgreSQL array operators.
- Advanced Condition Logic: Supports OR/AND conditions, automatic parentheses grouping, and explicit column mapping for flexible query construction.
import { SqlParamInjector, SqlFormatter } from 'rawsql-ts';
const sql = `SELECT u.user_id, u.user_name FROM users as u WHERE u.active = TRUE`;
const injector = new SqlParamInjector();
// Inject parameters and generate WHERE conditions
const injectedQuery = injector.inject(sql, { user_id: 42, user_name: 'Alice' });
const formatter = new SqlFormatter();
const { formattedSql, params } = formatter.format(injectedQuery);
console.log(formattedSql);
// Output: select "u"."user_id", "u"."user_name" from "users" as "u" where "u"."active" = true and "u"."user_id" = :user_id and "u"."user_name" = :user_name
console.log(params);
// Output: { user_id: 42, user_name: 'Alice' }
For more details, see the SqlParamInjector Usage Guide.
The SqlSortInjector
class enables dynamic ORDER BY clause injection into SQL queries, providing a clean and flexible way to handle sorting requirements. Instead of manually constructing different SQL statements for various sorting scenarios, you can inject sort conditions into your base SQL query, making your code more maintainable and reusable.
Key benefits include:
- Dynamic Sort Injection: Add ORDER BY conditions to existing queries without modifying the base SQL
- Flexible Sort Options: Support for ASC/DESC directions with NULLS FIRST/LAST positioning
- Append Mode: Preserves existing ORDER BY clauses and appends new conditions
- Column Alias Support: Works seamlessly with column aliases and calculated expressions
- TableColumnResolver Integration: Supports wildcard SELECT queries through schema resolution
- Clean Separation: Remove existing ORDER BY clauses when needed with
removeOrderBy()
import { SqlSortInjector, SqlFormatter } from 'rawsql-ts';
// Basic sort injection
const baseSql = 'SELECT id, name, created_at FROM users WHERE active = true';
const sortConditions = {
created_at: { desc: true, nullsLast: true },
name: { asc: true }
};
const injector = new SqlSortInjector();
const sortedQuery = injector.inject(baseSql, sortConditions);
const formatter = new SqlFormatter();
const { formattedSql } = formatter.format(sortedQuery);
console.log(formattedSql);
// Output: select "id", "name", "created_at" from "users" where "active" = true order by "created_at" desc nulls last, "name"
// Append to existing ORDER BY
const existingSql = 'SELECT id, name FROM users ORDER BY id ASC';
const additionalSort = { name: { desc: true } };
const appendedQuery = injector.inject(existingSql, additionalSort);
// Result: SELECT id, name FROM users ORDER BY id ASC, name DESC
// Remove existing ORDER BY when needed
const cleanQuery = SqlSortInjector.removeOrderBy(existingSql);
const newSortedQuery = injector.inject(cleanQuery, { name: { desc: true } });
// Result: SELECT id, name FROM users ORDER BY name DESC
For more details, see the SqlSortInjector Usage Guide.
The SqlPaginationInjector
class enables dynamic LIMIT/OFFSET clause injection into SQL queries, providing a clean and efficient way to handle data pagination. Instead of manually constructing different SQL statements for various page sizes and offsets, you can inject pagination into your base SQL query, making your code more maintainable and performance-optimized.
Key benefits include:
- Page-Based Pagination: Simple page number and page size configuration with automatic offset calculation
- Automatic OFFSET Optimization: Smart handling where page 1 omits unnecessary OFFSET 0 clauses
- Existing Clause Detection: Prevents conflicts by detecting and reporting existing LIMIT/OFFSET clauses
- Validation & Safety: Built-in validation for page numbers, page sizes, and configurable maximum limits
- Clean Removal: Remove existing pagination clauses when needed with
removePagination()
- Performance Conscious: Generates standard LIMIT/OFFSET patterns optimized for database engines
import { SqlPaginationInjector, SqlFormatter } from 'rawsql-ts';
// Basic pagination injection
const baseSql = 'SELECT id, name, email FROM users WHERE active = true ORDER BY created_at DESC';
const pagination = {
page: 2, // Page number (1-based)
pageSize: 20 // Items per page
};
const injector = new SqlPaginationInjector();
const paginatedQuery = injector.inject(baseSql, pagination);
const formatter = new SqlFormatter();
const { formattedSql } = formatter.format(paginatedQuery);
console.log(formattedSql);
// Output: select "id", "name", "email" from "users" where "active" = true order by "created_at" desc limit 20 offset 20
// First page optimization (no OFFSET needed)
const firstPagePagination = { page: 1, pageSize: 10 };
const firstPageQuery = injector.inject(baseSql, firstPagePagination);
const { formattedSql: firstPageSql } = formatter.format(firstPageQuery);
console.log(firstPageSql);
// Output: select "id", "name", "email" from "users" where "active" = true order by "created_at" desc limit 10
// Remove existing pagination when needed
const existingPaginatedSql = 'SELECT id, name FROM users LIMIT 50 OFFSET 100';
const cleanQuery = SqlPaginationInjector.removePagination(existingPaginatedSql);
const newPagination = { page: 1, pageSize: 25 };
const repaginatedQuery = injector.inject(cleanQuery, newPagination);
// Result: Clean query with new pagination applied
// Combine with other injectors for complete query building
let query = new SqlParamInjector().inject(baseSql, { status: 'active' });
query = new SqlSortInjector().inject(query, { created_at: { desc: true } });
query = new SqlPaginationInjector().inject(query, { page: 3, pageSize: 15 });
// Result: Filtered, sorted, and paginated query ready for execution
For more details, see the SqlPaginationInjector Usage Guide.
The PostgresJsonQueryBuilder
class transforms relational SQL queries into PostgreSQL JSON queries that return hierarchical JSON structures. It automatically handles complex relationships between entities and generates optimized Common Table Expressions (CTEs) for efficient JSON aggregation, making it perfect for building APIs, reports, and data exports.
Key benefits include:
- Hierarchical JSON Generation: Transforms flat relational data into nested JSON objects and arrays
- Automatic CTE Management: Generates optimized CTEs with proper dependency ordering
- Flexible Relationship Types: Supports both object (0..1) and array (1..N) relationships
- NULL Handling: Properly represents missing relationships as NULL instead of empty objects
- Performance Optimized: Uses depth-based processing and JSONB for optimal PostgreSQL performance
- Zero Manual Serialization: Eliminates the need for manual object mapping and JSON construction
import { SelectQueryParser, PostgresJsonQueryBuilder } from 'rawsql-ts';
// Parse your base SQL query
const baseQuery = SelectQueryParser.parse(`
SELECT o.order_id, o.order_date, c.customer_name, i.product_name, i.quantity
FROM orders o
LEFT JOIN customers c ON o.customer_id = c.customer_id
LEFT JOIN order_items i ON o.order_id = i.order_id
`) as SimpleSelectQuery;
// Define JSON mapping configuration
const mapping = {
rootName: "order",
rootEntity: { id: "order", name: "Order", columns: { "id": "order_id", "date": "order_date" }},
nestedEntities: [
{ id: "customer", parentId: "order", propertyName: "customer", relationshipType: "object",
columns: { "name": "customer_name" }},
{ id: "items", parentId: "order", propertyName: "items", relationshipType: "array",
columns: { "product": "product_name", "qty": "quantity" }}
],
useJsonb: true
};
// Transform to JSON query
const builder = new PostgresJsonQueryBuilder();
const jsonQuery = builder.buildJson(baseQuery, mapping);
// Returns optimized PostgreSQL query with CTEs that produces:
// [{ "id": 1, "date": "2024-01-15", "customer": {"name": "John"}, "items": [{"product": "Widget", "qty": 2}] }]
For more details, see the PostgresJsonQueryBuilder Usage Guide.
The SqlSchemaValidator
class helps ensure your SQL queries are valid against a predefined database schema. It can extract schema information about the physical tables your SQL query depends on. By comparing this extracted information with your defined schema (e.g., a schema definition class), you can statically verify the query's behavior. This enables you to perform regression testing as part of your unit tests when schema definitions change, ensuring that your queries remain compatible.
It checks if the tables and columns referenced in your query actually exist in your schema, and it understands table aliases. If there's a problem, it gives you a clear error message telling you what's wrong and where.
Key benefits include:
- Schema Validation: Verifies SQL queries against your database schema.
- Table and Column Verification: Confirms the existence of tables and columns used in the query.
- Alias Aware: Correctly resolves table aliases.
- Clear Error Reporting: Provides descriptive error messages for easy debugging.
- Static Analysis: Allows comparison of SQL-derived schema information with predefined schema definitions.
- Automated Regression Testing: Facilitates unit testing for schema change impacts on queries.
import { SelectQueryParser, SqlSchemaValidator } from 'rawsql-ts';
// Define your database schema
const schema = {
users: ['user_id', 'user_name', 'email', 'status'],
orders: ['order_id', 'user_id', 'order_date', 'total_amount']
};
const validator = new SqlSchemaValidator(schema);
// Example: Validate a SELECT query
const validSql = 'SELECT u.user_id, u.user_name FROM users as u WHERE u.status = \'active\'';
const queryToValidate = SelectQueryParser.parse(validSql);
try {
validator.validate(queryToValidate);
console.log('Query is valid against the schema.');
} catch (error) {
console.error('Schema validation failed:', error.message);
}
// Example: Validate a query with a non-existent column
const invalidSql = 'SELECT user_id, non_existent_column FROM users';
const invalidQuery = SelectQueryParser.parse(invalidSql);
try {
validator.validate(invalidQuery);
} catch (error) {
console.error('Schema validation error for non-existent column:', error.message);
// Expected output: Validation failed: Column 'non_existent_column' not found in table 'users'.
}
For more details on SqlSchemaValidator
, see the SqlSchemaValidator Usage Guide.
QueryBuilder
is a powerful utility that enhances the management and generation of SQL modification queries (such as INSERT
or UPDATE
) by leveraging select queries. This approach significantly improves the maintainability of complex data manipulation logic. It allows for the conversion of select queries into corresponding update-type queries, streamlining development and ensuring consistency.
import { SelectQueryParser, QueryBuilder, SqlFormatter, QueryNormalizer } from 'rawsql-ts';
// Example: Convert a SELECT query to an UPDATE query
const selectSourceSql = 'SELECT id, new_email AS email, last_login FROM user_updates_source WHERE needs_update = TRUE';
// QueryBuilder.buildUpdateQuery expects a SimpleSelectQuery as input.
// If your source is a complex query (e.g. with UNIONs or CTEs), normalize it first.
const normalizedSelectQuery = QueryNormalizer.normalize(SelectQueryParser.parse(selectSourceSql));
// Define the target table for the UPDATE and the primary key(s) for joining
const targetTable = 'users';
const primaryKeys = ['id']; // Column(s) to match records between source and target
const updateQuery = QueryBuilder.buildUpdateQuery(
normalizedSelectQuery,
'd', // Alias of the source query in the FROM clause
targetTable,
primaryKeys
);
const formatter = new SqlFormatter({ preset: 'postgres' }); // Using postgres preset for clarity
const { formattedSql: updateSql } = formatter.format(updateQuery);
console.log(updateSql);
// Example output (actual output depends on the SQL dialect and specific query structure):
// update "users" set "email" = "d"."email", "last_login" = "d"."last_login" from (SELECT id, new_email AS email, last_login FROM user_updates_source WHERE needs_update = TRUE) as "d" where "users"."id" = "d"."id"
For more details on QueryBuilder
, see the QueryBuilder Usage Guide.
The SchemaManager
class provides unified schema definition and type-safe conversion to various formats, eliminating code duplication for rawsql-ts. It serves as a central hub for managing database schema definitions and converting them to formats required by different components like SqlParamInjector
and PostgresJsonQueryBuilder
.
Key benefits include:
- Unified Schema Definition: Define your database schema once and generate JSON mappings, table column resolvers, and other formats for multiple rawsql-ts components
- Type-Safe JSON Mapping: Fully typed conversion without using
any
types - Schema Validation: Built-in validation ensures schema consistency and integrity
- Relationship Management: Supports complex table relationships with object and array outputs
import { SchemaManager, createSchemaManager } from 'rawsql-ts';
// Define your database schema once
const schemas = {
users: {
name: 'users',
columns: {
user_id: { name: 'user_id', isPrimaryKey: true },
user_name: { name: 'user_name' },
email: { name: 'email' }
}
}
};
// Create SchemaManager and use with other components
const schemaManager = createSchemaManager(schemas);
const tableColumnResolver = schemaManager.createTableColumnResolver();
const injector = new SqlParamInjector({ tableColumnResolver });
For more details on SchemaManager
, see the SchemaManager Usage Guide.
This project includes a comprehensive benchmark suite to evaluate the performance of rawsql-ts
in comparison with other popular libraries such as node-sql-parser
and sql-formatter
.
npm run benchmark
The benchmark suite measures SQL parsing and formatting speed across queries of varying complexity:
- Tokens20: Simple SELECT with a basic WHERE clause (~20 tokens)
- Tokens70: Medium complexity query with JOINs and multiple conditions (~70 tokens)
- Tokens140: Complex query with CTEs and aggregations (~140 tokens)
- Tokens230: Highly complex query with multiple CTEs, subqueries, and window functions (~230 tokens)
benchmark.js v2.1.4
Windows 10.0.26100
AMD Ryzen 7 7800X3D (8C/16T)
Node.js v22.14.0
Method | Mean (ms) | Error (ms) | StdDev (ms) | Times slower vs rawsql-ts |
---|---|---|---|---|
rawsql-ts | 0.029 | 0.0087 | 0.0044 | - |
node-sql-parser | 0.210 | 0.4505 | 0.2298 | 7.3x |
sql-formatter | 0.228 | 0.1598 | 0.0815 | 8.0x |
[!Note] When the token count is extremely low,
rawsql-ts
becomes disproportionately fast. However, such small queries are rare in real-world scenarios, so this result is excluded from the overall performance summary.
Method | Mean (ms) | Error (ms) | StdDev (ms) | Times slower vs rawsql-ts |
---|---|---|---|---|
rawsql-ts | 0.075 | 0.0541 | 0.0276 | - |
node-sql-parser | 0.223 | 0.0848 | 0.0432 | 3.0x |
sql-formatter | 0.547 | 0.1432 | 0.0731 | 7.3x |
Method | Mean (ms) | Error (ms) | StdDev (ms) | Times slower vs rawsql-ts |
---|---|---|---|---|
rawsql-ts | 0.137 | 0.0175 | 0.0089 | - |
node-sql-parser | 0.420 | 0.1030 | 0.0526 | 3.1x |
sql-formatter | 1.057 | 0.2390 | 0.1220 | 7.7x |
Method | Mean (ms) | Error (ms) | StdDev (ms) | Times slower vs rawsql-ts |
---|---|---|---|---|
rawsql-ts | 0.239 | 0.0577 | 0.0294 | - |
node-sql-parser | 0.871 | 0.2042 | 0.1042 | 3.6x |
sql-formatter | 1.906 | 1.4631 | 0.7465 | 8.0x |
rawsql-ts
remains one of the fastest parsers, though it is approximately 10% slower in version 0.7 compared to previous versions. This is due to the addition of enhanced parameterized query parsing and SQL formatting capabilities.- About 3–4x faster than
node-sql-parser
. - About 4–5x faster than
sql-parser-cst
. - About 7–8x faster than
sql-formatter
. - Maintains high performance even for complex SQL, while providing comprehensive features.
Note: These benchmarks are based on a specific hardware and software environment. Actual performance may vary depending on system configuration and query complexity.
Feel free to try rawsql-ts! Questions, requests, and bug reports are always welcome.