string sqlstr = "select * from tb_user where account=@account and Password=@Password

2025-01-21 00:00:03
推荐回答(1个)
回答1:

where account=@account

account 应该是表 tb_user 的 列名
而 @account 应该是外部传递进来的参数值.

例如外部传递了参数 @account = abc

那么最后执行的 SQL 语句, 将是:

where account= ‘abc’