我只需要从表中删除唯一值。像这样:
delete from clients where title is unique
该怎么做?
答案 0 :(得分:3)
对于具有count = 1的标题,您可以尝试使用连接数为th的连接
public void btnUpdate_Click(object sender, EventArgs e)
{
DotNetNuke.Entities.Users.UserInfo objUserInfo = UserController.Instance.GetCurrentUserInfo();
if (objUserInfo != null)
{
objUserInfo.Profile.SetProfileProperty("Fax", txtFax.Text.ToString());
DataCache.ClearCache();
UserController.UpdateUser(objUserInfo.PortalID, objUserInfo);
}
}