欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php mysql insert into 结合详解及实例代码

程序员文章站 2023-12-17 19:26:40
php mysql insert into 结合详解 ysql insert into语句在实际应用中是经常使用到的语句,所以对其相关的内容还是多多掌握为好。 向数据库...

php mysql insert into 结合详解

ysql insert into语句在实际应用中是经常使用到的语句,所以对其相关的内容还是多多掌握为好。

向数据库表插入数据
insert into 语句用于向数据库表添加新记录。

语法

insert into table_name
values (value1, value2,....)

您还可以规定希望在其中插入数据的列:

insert into table_name (column1, column2,...)
values (value1, value2,....)

注释:sql 语句对大小写不敏感。insert into 与 insert into 相同。

1.insert语句一次可以插入多组值,每组值用一对圆括号括起来,用逗号分隔,如下:

insert into `news`(title,body,time) values('title 1','body 1',now()),('title 2','body 2',now());

2.insert select 语句,将查询的结果插入到新的表,顾名思义,它由一条insert语句和一条select语句组成

insert into news_one(id,title,body,time) select id,title,body,time from news_two;

要注意的是,这两个表的结构要完全相同,列名可以不同。

在php中使用方法

下面是 "insert.php" 页面的代码:

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
 {
 die('could not connect: ' . mysql_error());
 }
mysql_select_db("my_db", $con);
$sql="insert into persons (firstname, lastname, age)
values
('$_post[firstname]','$_post[lastname]','$_post[age]')";
if (!mysql_query($sql,$con))
 {
 die('error: ' . mysql_error());
 }
echo "1 record added";
mysql_close($con)
?>

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:

下一篇: