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

SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular

SQLize.online is a free online SQL environment for quickly running, experimenting with and sharing code. You can run your SQL code on top of the most popular RDBMS including MySQL, MariaDB, SQLite, PostgreSQL, Oracle and Microsoft SQL Server.

Copy Format Clear
CREATE TYPE bet_state AS ENUM ('pending', 'win', 'lose', 'cancelled'); CREATE TABLE bets ( id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), state bet_state NOT NULL DEFAULT 'pending' ); INSERT INTO bets (state) VALUES ('win'), ('lose'); SELECT * FROM bets WHERE state = 'win'; SELECT * FROM bets WHERE state = ANY ('{"win"}');

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear