其他
SQL 语句单引号、双引号的用法
点击上方“民工哥技术之路”,选择“设为星标”
回复“1024”获取独家整理的学习资料!
关于Insert字符串 ,在(单引号,双引号)这个方面发生了问题,其实主要是因为数据类型和变量在作怪。下面我们就分别讲述,虽然说的是Insert语句, 但是Select、Update、Delete语句都是一样的。
mytabe
字段1 username 字符串型(姓名)
字段2 age 数字型(年龄)
字段3 birthday 日期型(生日)
字段4 marry 布尔型(是否结婚,结婚为True,未结婚为False)
字段5 leixing 字符串型(类型)
插入字符串型
strsql=“Insert into mytable(username) values(‘张红')”
strsql=”Insert into mytable(username) values(‘” & thename & “')”
Insert into mytable(username) values(‘ 是张红前面的部分,thename是字符串变量, ')
strsql=“Insert into mytable(username) values(‘张红')”
strsql=“Insert into mytable(username,leixing) values(‘张红','学生')”
strsql=”Insert into mytable(username,leixing) values(‘” & thename & “','” & thetype & “')”
(是12前面的部分,theage是年龄变量,)是12后面部分。
将theage替换,再用&连接符将三部分连接起来,就变为了和上面一样的字符。
插入日期型
插入布尔型
strsql=“Insert into mytable(username) values(‘张红')”
strsql=“Insert into mytable(username) values(‘” “')”
strsql=“Insert into mytable(username) values(‘” & & “')”
strsql=“Insert into mytable(username) values(‘” & thename & “')” -
作者:peterYong原文:https://www.cnblogs.com/peterYong/p/6556680.html
最新整理的 2TB 干货资源,包括但不限于:Linux运维、架构师、大数据、Docker、数据库、redis、MongoDB、电子书、Java、机器学习、BAT面试精讲视频等。在公众号对话框回复「1024 」即可免费获取!!
推荐阅读 点击标题可跳转看完本文有收获,请分享给更多人
关注「民工哥技术之路」加星标,提升IT技能