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
turso> CREATE TABLE a(x TEXT);
CREATE TABLE b(rowid TEXT);
INSERT INTO a VALUES('sku1');
INSERT INTO b VALUES('sku1');
SELECT rowid FROM a JOIN b ON a.x = b.rowid;
x Parse error: ROWID is ambiguous
turso>