gpt4 book ai didi

c# - 使用 Select 语句插入语句值

转载 作者:行者123 更新时间:2023-11-30 16:09:26 25 4
gpt4 key购买 nike

你能帮我处理这个语句吗,我正在尝试使用 SELECT 语句检索数据并使用 INSERT 语句中的日期。

我想使用为 ProfileId 值检索的数据。

 // Get the UserId of the just-added user
MembershipUser currentUser = Membership.GetUser();
Guid currentUserId = (Guid)currentUser.ProviderUserKey;

// Insert a new record into UserPro
string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;

string insertSql = "INSERT INTO User_Friend(ProfileId1, ProfileId) VALUES(@FriendProfileId) SELECT ProfileId FROM User_Profile WHERE UserId = (@UserId)";


using (SqlConnection myConnection = new SqlConnection(connectionString))
{
myConnection.Open();
SqlCommand myCommand = new SqlCommand(insertSql, myConnection);
myCommand.Parameters.AddWithValue("@FriendProfileId", Request.QueryString["ProfileId"].ToString());

myCommand.Parameters.AddWithValue("@UserId", currentUserId);
myCommand.ExecuteNonQuery();
myConnection.Close();
}

如何使用 SELECT 结果作为 ProfileId 值。

最佳答案

插入语句应该是

INSERT INTO User_Friend(ProfileId1, ProfileId)
VALUES ( @FriendProfileId,
(SELECT ProfileId FROM User_Profile WHERE UserId = @UserId))

或者 SELECT TOP(1) ProfileId 以确保您永远不会获得超过 1 个值。

关于c# - 使用 Select 语句插入语句值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27642513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com