'<' 之前缺少操作数数据表选择中的运算符

发布于 2024-11-05 09:37:31 字数 276 浏览 0 评论 0 原文

在数据表中,有一列是复合日期,其中包含带有某些条件的日期值,我想过滤数据表。

我所做的表达给了我错误。

表达

scaleID=8207 and CompositeDate >= '5/1/2009 6:01:23 PM' And CompositeDate =< '5/31/2009 6:01:23 PM'

我在这里缺少什么,如果不能以这种方式完成,我们可以使用 LINQ 来实现吗?如果可以的话,任何人都可以为我提供语法。

In the data table there is column that is composite date that has the value of the date with some conditions i want to filter the data table.

The expression that i am making is giving me error .

Expression

scaleID=8207 and CompositeDate >= '5/1/2009 6:01:23 PM' And CompositeDate =< '5/31/2009 6:01:23 PM'

what is that i am missing here if it cannot be done in this way can we use LINQ for this if yes can any one provide me with the syntax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下伊人醉 2024-11-12 09:37:31

当我怀疑您的意思是 <= 时,您正在使用 =<

表达式语法的文档包括 <=,但我看不到任何表明 =< 有效的内容。

就我个人而言,我会尽量避免使用魔术字符串并使用 LINQ(即使在数据表中),但这是另一回事。

You're using =< when I suspect you mean <=.

The docs for the expression syntax include <=, but I can't see anything to suggest that =< is valid.

Personally I would try to avoid magic strings as far as possible and use LINQ instead (even within datatables) but that's a different matter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文