こんにちは私はpostgreSqlテーブルで次のことを行おうとしていますが、構文に問題があります。
擬似コード:
if (tableA.column1 does not contain value1)
{
INSERT INTO tableA (column1, column2)
VALUES value1, value2
}
// do this check even if the above already existed
if (tableB does not contain value1 and value3 in the same row)
{
// it is ok if value1 and value3 already exist in the table, just not the same row
INSERT INTO tableB (column1, column2)
VALUES (value1, value3)
}
return true
この操作の実際の構文に関するヘルプをいただければ幸いです。