Table Flow Visualization
Create Statement:
CREATE TABLE Users ( id INT PRIMARY KEY, name VARCHAR(255), email VARCHAR(255) );
Query:
SELECT * FROM Users;
Create Statement:
CREATE TABLE Orders ( id INT PRIMARY KEY, user_id INT, total DECIMAL(10, 2), FOREIGN KEY (user_id) REFERENCES Users(id) );
Query:
SELECT o.* FROM Orders o JOIN Users u ON o.user_id = u.id;
Press enter or space to select a node.You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.