SQL 语句中单引号、双引号的用法
SQL数据库开发
共 2531字,需浏览 6分钟
·
2020-08-13 22:00
点击关注上方“SQL数据库开发”,
设为“置顶或星标”,第一时间送达干货
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 & “')”
strsql=“Insert into mytable(age) values(12)”
strsql=“Insert into mytable(age) values(“ & theage & “)”
Insert into mytable(age) values
(是12前面的部分,theage是年龄变量,)是12后面部分。
将theage替换,再用&连接符将三部分连接起来,就变为了和上面一样的字符。
插入日期型
strsql=“Insert into mytable(birthday) values(#1980-10-1#)”
strsql=“Insert into mytable(birthday) values(#” & thedate & “#)”
插入布尔型
strsql=“Insert into mytable(marry) values(True)”
strsql=“Insert into mytable(birthday) values(” & themarry& “)”
strsql=“Insert into mytable(username,age) values(‘张红',12)”
strsql=“Insert into mytable(username,age) values(‘” & thename & “',” & 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 & “')” -
——End——
后台回复关键字:1024,获取一份精心整理的技术干货 后台回复关键字:进群,带你进入高手如云的交流群。 推荐阅读
这是一个能学到技术的公众号,欢迎关注
评论