Use data-modifying CTEs to chain your three INSERTs. Something like this: WITH ins1 AS ( INSERT INTO table1 (username, name, surname) VALUES ...
確定! 回上一頁