Hi! Could we please enable some services and cookies to improve your experience and our website?

SQLize | PHPize | SQLtest

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

A A A
Login    Share code      Blog   FAQ
Copy Format Clear
CREATE TABLE random_uuids_table ( id SERIAL PRIMARY KEY, meta JSONB ); INSERT INTO random_uuids_table (meta) SELECT jsonb_agg(uuid_generate_v4()) FROM generate_series(1, 100 * 50) i group by i % 100 ; select *, jsonb_array_length(meta) from random_uuids_table limit 10 ; select count(*) from random_uuids_table ;

Stuck with a problem? Got Error? Ask AI support!

Copy Clear