关于数据库的insert插入语句
发布网友
发布时间:2022-04-23 01:27
我来回答
共5个回答
懂视网
时间:2022-04-10 08:45
<if test="name != null">
name,
</if>
<if test="role_code != null">
role_code,
</if>
<if test="description != null">
description,
</if>
<if test="sort_id != null">
sort_id,
</if>
<if test="disabled != null">
disabled,
</if>
<if test="id != null">
id,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null">
#{name},
</if>
<if test="role_code != null">
#{role_code},
</if>
<if test="description != null">
#{description},
</if>
<if test="sort_id != null">
#{sort_id},
</if>
<if test="disabled != null">
#{disabled},
</if>
<if test="id != null">
#{id},
</if>
</trim>
</insert>
【数据库】insert语句
标签:test esc role 数据 null values value script ref
热心网友
时间:2022-04-10 05:53
建立ACCESS数据库db1.mdb,在其中建立数据表user,字段分别为:
u_uid(自动)
u_user(用户名:文本型)
u_pass(密码:文本型)
建立接收register.asp中发送过来的表单数据,并插入到数据表user中的注册成功显示页面:result2.asp代码如下:
<%@ language=vbscript %>
<!-- #include file="con1.asp"-->
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>注册成功</title><br>
</head>
<body>
<%
'建立recordset对象方法
set rst=server.createobject("adodb.recordset")
set rst1=conn.execute("insert into user (u_user,u_pass) values('"&request.form("u_user")&"','"&request.form("u_pass")&"')")
%>
<table width="300" border="0" align="center">
<tr>
<td align="center"><img src="chenggong.jpg" alt="注册成功" width="297" height="201"></td>
</tr>
</table>
</body>
</html>
热心网友
时间:2022-04-10 07:11
如果设的是字符char型的,在插入的时候应该用单引号
热心网友
时间:2022-04-10 08:45
insert into code(key, value, type) values(2, '女', 'sex');
单引号
我才看见`你是什么数据库?int类型还能定义长度?????
热心网友
时间:2022-04-10 10:37
insert into code(key, value, type) values(2, '女', 'sex');