我正试图从VSCode向我的Github存储库推送,拉取任何东西.
我输入了我的用户名和密码,但我收到的错误是Authentication failed on the git remote.
我刚刚使用相同的用户/通行证登录github.com.
我尝试创建个人访问令牌,使用它作为密码,同样的错误.
我使用此方法来检查行是否在另一个表中是外键.
select
personID,
name,
(
/* CAST THIS PART TO BIT return 1 if field is found, 0 if not */
select top 1 parents.personID
from parents
where parents.personID=persons.personID
) as inUse
from persons
Run Code Online (Sandbox Code Playgroud)
是否有可能像我评论的那样做?