我有一个表格users
,其中两列包含user_names
,其中text
类型的名称为points
,类型为real
。我的目标是在第一列中选择一个名为let user4
的元素的特定值,并返回其右侧的整数。
我的第一个想法是使用看起来像这样的东西
select points from users where user_name like user4
这应该以其他方式完成吗?
答案 0 :(得分:1)
听起来你在这里寻找的只是验证。如果您只是在public sealed class DatagramMetadata
{
public string MyProp
{
get
{
return Properties.Settings.Default.MySetting;
}
}
public DateTime Observed { get; set; }
public string EndpointIPAddress { get; set; }
public int EndpointPort { get; set; }
public string DeviceIPAddress { get; set; }
public int DevicePort { get; set; }
public string Datagram { get; set; }
public string NewProperty { get; set; } // <--- new property
}
周围添加单引号,那么您编写的SQL语句将正常工作。我要改变的唯一另一件事是使用user4
代替=
。 like
关键字通常仅在执行通配符匹配时使用,在这种情况下您不进行此操作。