I have two tables ACCOUNTS
and ACCOUNT_LIMITS
and they have crossed foreign keys.
ACCOUNTS
--------
id (PK)
account_limits_id (FK)
username
ACCOUNT_LIMITS
--------------
id (PK)
account_id (FK)
limit
I shortened the real example. My question is, How can I make an insert statement for both tables?