

wrangler 3.9.0 is the latest as well.INSERT INTO ... SELECT with a bunch of JOINsDELETE FROM offers WHERE price=5 LIMIT 1near "LIMIT": syntax error
UPDATE users SET balance = balance + 10 WHERE id = 'test' LIMIT 1near "LIMIT": syntax error
SQLITE_ENABLE_UPDATE_DELETE_LIMITThis option enables an optional ORDER BY and LIMIT clause on UPDATE and DELETE statements.
CREATE TABLE IF NOT EXISTS messages (
title text NOT NULL,
body text NOT NULL,
amount INTEGER NOT NULL,
color VARCHAR(10) NOT NULL,
);BEGIN;
-- Check if a record with the specified car_id and owner_id exists in the cars table
DECLARE @car_matches INTEGER;
SET @car_matches = (SELECT COUNT(*) FROM cars WHERE car_id = 'car1' AND owner_id = 'bob');
-- Only insert into the tickets table if we find a match for that car and owner
IF @car_matches > 0 THEN
-- Insert data into the tickets table
INSERT INTO tickets (ticket_description, owner_id, car_id)
VALUES ('Speeding', 'bob', 'car1');
ELSE
-- The car does not exist, or the owner has changed
ROLLBACK;
END IF;
COMMIT;SQLITE_ENABLE_UPDATE_DELETE_LIMITCREATE TABLE IF NOT EXISTS messages (
title text NOT NULL,
body text NOT NULL,
amount INTEGER NOT NULL,
color VARCHAR(10) NOT NULL,
);