sql 语句实现登录账号与数据库账号的比较
------解决思路----------------------
select count(*) from [tablename] where [Account]=@Account
大于0就是存在,等于0就是不存在呗
@Account是登录账号
------解决思路----------------------
select count(Account) from [tablename] where [Account]=@Account
最好count 具体的字段,而不是*