gpt4 book ai didi

c# - 在父表中插入值时自动在子表中生成id

转载 作者:行者123 更新时间:2023-11-29 05:22:38 26 4
gpt4 key购买 nike

我有两个表,分别是父表和子表。现在我向父表插入一个值,自动递增 id。代码是这样的:

string query2 = "INSERT INTO printer_info(printer_ip) VALUES(@ipAddress)";
MySqlCommand cmd1 = new MySqlCommand(query2, connection);

cmd1.Parameters.AddWithValue("@ipAddress", pAddress);
cmd1.ExecuteNonQuery();

现在我的问题是,当值插入到父表中时。如果想让child表中的id自动生成怎么办?请指教。

   ID | printer_ip               printer_id | page_count
--------------- ------> -----------------------
1 | 10.0.0.0 |

PRIMARY KEY ID FOREIGN KEY printer_id

最佳答案

如果你也想在子行中插入一行,就在父行创建之后,那么你可以在下一个插入语句中使用 last_insert_id()

示例:

string query2 = "INSERT INTO printer_info(printer_ip) VALUES(@ipAddress)";
MySqlCommand cmd1 = new MySqlCommand(query2, connection);

cmd1.Parameters.AddWithValue("@ipAddress", pAddress);
cmd1.ExecuteNonQuery();

string query_for_child_row = "INSERT INTO printer_queue(printer_id, page_count)
VALUES( LAST_INSERT_ID(), @page_count )";
MySqlCommand cmd2 = new MySqlCommand( query_for_child_row, connection );

cmd2.Parameters.AddWithValue( "@page_count", page_count );
cmd2.ExecuteNonQuery();

关于c# - 在父表中插入值时自动在子表中生成id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23904564/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com