作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你能帮我处理这个语句吗,我正在尝试使用 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/
我是一名优秀的程序员,十分优秀!