C#,sql2005:select * from [dbo].[xxx] where username='{0}';取不到任何数据,是为什么?
2个回答
展开全部
这是一个带参数的SQL语句
跟踪SQL语句,SQL最终被执行的时候,是什么样子
或者可以使用SQL事件探查器,监视被执行的SQL语句是什么
能看到最终被执行的SQL语句,就应该知道为什么没数据了
追问
如何用一个SQL语句查询表内所有记录:
select * from [dbo].[xxx] where username=???
怎么写可以实现呢?
???应该怎么写
追答
select * from [dbo].[xxx] where username=username
或者
select * from [dbo].[xxx]
select * from [dbo].[xxx] where 1=1
2018-09-02
展开全部
select * from [dbo].[xxx] where username=???
select * from [dbo].[xxx] where username='" & AA & "' ; '其中AA是你需要查询的变量值,例如 AA = "用户",那么执行后 select * from [dbo].[xxx] where username='用户' 。
select * from [dbo].[xxx] where username='" & AA & "' ; '其中AA是你需要查询的变量值,例如 AA = "用户",那么执行后 select * from [dbo].[xxx] where username='用户' 。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询