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
Can you provide a BNF grammar for FOREIGN KEY syntax? I getting parser exception on this query:
CREATETABLEIF NOT EXISTS table1 (
id INTEGERPRIMARY KEY AUTO_INCREMENT,
aid INTEGERREFERENCES accounts ON aid ON DELETE CASCADE,
name STRING,
lastname STRING)