博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态sql的两种执行方式execute-sp_executesql
阅读量:6330 次
发布时间:2019-06-22

本文共 343 字,大约阅读时间需要 1 分钟。

execute

execute (N'select * from Student')--正确

execute ('select * from Student')--正确
-------------------------------------------------------
sp_executesql

sp_executesql N'select * from Student'--正确

sp_executesql 'select * from Student'--错误     sp_executesql 只能执行Unicode或可以隐式转换为ntext的字符串常量、变量。  

转载于:https://www.cnblogs.com/liyunchuan/p/10997328.html

你可能感兴趣的文章
讨厌的502 Bad Gateway
查看>>
Http client to POST using multipart/form-data
查看>>
[CVPR 2016] Weakly Supervised Deep Detection Networks论文笔记
查看>>
transition过渡规定慢速开始,然后变快,然后慢速结束的过渡效果(cubic-bezier(0.25,0.1,0.25,1))。...
查看>>
JS基础知识
查看>>
关于Verilog HDL的一些技巧、易错、易忘点(不定期更新)
查看>>
用浮动IP实现高可用性,待续
查看>>
Strom(0.9.3)配置
查看>>
Python之Paramiko、前端之html学习_Day14
查看>>
HDU 3836 Equivalent Sets
查看>>
深入理解JVM读书笔记思维导图
查看>>
String字符串位置移动
查看>>
MySQL无法插入中文的解决方案
查看>>
bzoj2301
查看>>
react16 渲染流程
查看>>
Android游戏与应用开发最佳学习路线图
查看>>
Android应用打开外部文件
查看>>
hadoop生态搭建(3节点)-05.mysql配置_单节点
查看>>
堆和栈的区别
查看>>
网易2017春招笔试真题编程题集合(2)——赶去公司
查看>>