gpt4 book ai didi

php - 如何从两个源表单和其他表插入mysql数据

转载 作者:行者123 更新时间:2023-11-29 00:37:37 25 4
gpt4 key购买 nike

我有一个包含以下列的表格:

id
bid
name
text
time

bid 字段来自另一个表,其余来自 $_POST 表单。

谁能解决这个问题?

$name$_POST['name'];

$text=$_POST['text'];

$time=date(j/F/Y);

SQL 查询:

INSERT INTO table1 (bid) SELECT bid FROM table2 WHERE id='6'

INSERT INTO table 1
(name, text, time)
VALUES ($name, $text, $time)

我需要这两个都发生在一个查询中。

最佳答案

我想你需要这个::

Insert into my_table (id, bid, name, text, time) values (var_id, (Select bid from table_2 where id2=var_id ), var_name, var_text, var_time)

关于php - 如何从两个源表单和其他表插入mysql数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13625602/

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