Virtual (or non-persistent) Generated Columns: These columns are computed dynamically whenever they are queried. They do not occupy storage space in the database.
Stored (or persistent) Generated Columns: These columns are computed when a row is inserted or updated and their values are stored in the database. This allows them to be indexed and can improve query performance since the values do not need to be recomputed for each query.
The implementation and usage of generated columns can vary significantly across different SQL databases. PostgreSQL, MySQL, and SQLite each have unique features, capabilities, and limitations when it comes to generated columns. In this section, we will explore these differences in detail to help you understand how to best utilize generated columns in each database system.
PostgreSQL
MySQL
SQLite
SingleStore(WIP)
MSSQL
CockroachDB
Database side
Types: STORED only
How It Works
Automatically computes values based on other columns during insert or update.
Capabilities
Simplifies data access by precomputing complex expressions.
Enhances query performance with index support on generated columns.
Limitations
Cannot specify default values.
Expressions cannot reference other generated columns or include subqueries.
Schema changes required to modify generated column expressions.
Cannot directly use in primary keys, foreign keys, or unique constraints
In Drizzle you can specify .generatedAlwaysAs() function on any column type and add a supported sql query,
that will generate this column data for you.
Features
This function can accept generated expression in 3 ways:
string
export const test = pgTable("test", { generatedName: text("gen_name").generatedAlwaysAs(`hello world!`),});
CREATE TABLE IF NOT EXISTS "test" ( "gen_name" text GENERATED ALWAYS AS (hello world!) STORED);
sql tag - if you want drizzle to escape some values for you
export const test = pgTable("test", { generatedName: text("gen_name").generatedAlwaysAs(sql`hello "world"!`),});
CREATE TABLE IF NOT EXISTS "test" ( "gen_name" text GENERATED ALWAYS AS (hello "world"!) STORED);
callback - if you need to reference columns from a table
CREATE TABLE IF NOT EXISTS "test" ( "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "test_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), "content" text, "content_search" "tsvector" GENERATED ALWAYS AS (to_tsvector('english', "test"."content")) STORED);--> statement-breakpointCREATE INDEX IF NOT EXISTS "idx_content_search" ON "test" USING gin ("content_search");
Database side
Types: STORED, VIRTUAL
How It Works
Defined with an expression in the table schema.
Virtual columns are computed during read operations.
Stored columns are computed during write operations and stored.
Capabilities
Used in SELECT, INSERT, UPDATE, and DELETE statements.
Can be indexed, both virtual and stored.
Can specify NOT NULL and other constraints.
Limitations
Cannot directly insert or update values in a generated column
CREATE TABLE `test` ( `first_name` text, `gen_name` text GENERATED ALWAYS AS (hi, `test`.`first_name`!) VIRTUAL);
Limitations
Drizzle Kit will also have limitations for push command:
You can’t change the generated constraint expression and type using push. Drizzle-kit will ignore this change. To make it work, you would need to drop the column, push, and then add a column with a new expression. This was done due to the complex mapping from the database side, where the schema expression will be modified on the database side and, on introspection, we will get a different string. We can’t be sure if you changed this expression or if it was changed and formatted by the database. As long as these are generated columns and push is mostly used for prototyping on a local database, it should be fast to drop and create generated columns. Since these columns are generated, all the data will be restored
CREATE TABLE `test` ( `first_name` text, `gen_name` text GENERATED ALWAYS AS (hi, "first_name"!) VIRTUAL);
Limitations
Drizzle Kit will also have limitations for push and generate command:
You can’t change the generated constraint expression with the stored type in an existing table. You would need to delete this table and create it again. This is due to SQLite limitations for such actions. We will handle this case in future releases (it will involve the creation of a new table with data migration).
You can’t add a stored generated expression to an existing column for the same reason as above. However, you can add a virtual expression to an existing column.
You can’t change a stored generated expression in an existing column for the same reason as above. However, you can change a virtual expression.
You can’t change the generated constraint type from virtual to stored for the same reason as above. However, you can change from stored to virtual.
In Drizzle you can specify .generatedAlwaysAs() function on any column type and add a supported sql query,
that will generate this column data for you.
Features
This function can accept generated expression in 3 ways:
string
export const test = cockroachTable("test", { generatedName: text("gen_name").generatedAlwaysAs(`hello world!`),});
CREATE TABLE "test" ( "gen_name" text GENERATED ALWAYS AS (hello world!) STORED);
sql tag - if you want drizzle to escape some values for you
export const test = cockroachTable("test", { generatedName: text("gen_name").generatedAlwaysAs(sql`hello "world"!`),});
CREATE TABLE "test" ( "gen_name" text GENERATED ALWAYS AS (hello "world"!) STORED);
callback - if you need to reference columns from a table