You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
legs integer CONSTRAINT too_many_legs CHECK (legs <= 6)
);
INSERT INTO Bees (name, wings, legs) VALUES
('Dr. Bee', 2, 6);
SELECT *
FROM Bees b
WHERE b.wings = 2 AND b.legs = 6;
INSERT INTO Bees (name, wings, legs) VALUES
('Mr. Dragonfly', 4, 6),
('Nick', 0, 2);
</textarea>
</div>
<div class="right" id="ast">
<h3 id="ast-header">Syntax Tree</h3>
<textarea id="ast-text"></textarea>
</div>
</div>
<footer>
<h3>
<a title="sqlite-parser on GitHub" href="https://github.com/codeschool/sqlite-parser/">sqlite-parser</a>