データベースを設計しており、一度に 2 つのテーブルに値を挿入するステートメントが必要です。私がそうすることの問題は、テーブルの1つに値が必要であり、それが他のテーブルで自動インクリメントされるという事実です。これどうやってするの?私のホストは、残念ながら外部キーの使用をサポートしていません。(私は mySQL を使用し
ています) テーブル名と値を以下に示します。
Task
+ id (auto incremented value)
+ dataid (should have been foreign key to data.id- which will be auto incremented when +tatement is xecuted)
+ priority (task priority 1-100)
+ statusid (should have been foreign key to status.id - this value is given)
+ toc (TimeOfCreation - timestamp, will be set automatically)
Data
+ id (auto incremented value)
+ text (the text of the task/privatemsg/statusmsg etc.)
data.id が自動インクリメントされ、task.dataid に格納されているこれらのテーブルにこのデータを挿入できるようにする挿入ステートメントを作成するのを手伝ってもらえますか?
text=fix login
priority=99
statusid=4
ご不明な点がございましたらお尋ねください。
前もって感謝します
ピラセル