What is something that could happen so we know if it’s suitable for our apps to use today
What is something that could happen so we know if it’s suitable for our apps to use today

500mb per database * 10 databases does add up to 5gb admittedlyThis one ^



wrangler 3.9.0 is the latest as well.INSERT INTO ... SELECT with a bunch of JOINsBEGIN;
-- 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;