问题标签 [and-operator]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
48 浏览

sql - 是否始终执行查询的 AND 部分?

我在 SQL Server 存储过程中有一个查询,如下所示:

IF (@EDITED = 1) AND (EXISTS (SELECT 1 FROM InventarizacijaZurnals WHERE RECORD_UNIQUE_ID=@RECORD_UNIQUE_ID)) ....

我的问题是 -AND即使第一个语句是,也总是执行后的查询部分True?我知道有些语言会这样做,有些则不会。它在 SQL Server 中是如何工作的?网上好像找不到明确的答案。

0 投票
3 回答
135 浏览

sql-server - 模拟AND运算符的聚合位列

我有一些必须汇总的行,放入 AND 位列。我让你看一个例子......我有一组这样的数据:

我希望得到的结果是:

如何聚合列以获得我想要的结果?

我已经尝试了这两种解决方案,但没有一个有效:

谁能帮我?谢谢

0 投票
5 回答
154 浏览

python - 为什么这个 elif 语句给我一个错误?

我不明白为什么我的elif陈述中有错误。

我正在将 eclipse 插件pydev与最新版本的 python 一起使用。

例如,

这应该输出为True

相反,它给了我这个:

“在第 42 行第 54 列遇到“<”。期待以下之一:“(”...“{”...“[”...“。”...“+”...“-” ...“〜”...“不”...“异步”...“等待”...“假”...“真”...“无”... ... .. . ... ... ... ... ... "\'" ... "\"" ... "\'\'\'" ... "\"\"\"" 。 .. "\'" ... "\"" ... "\'\'\'" ... "\"\"\"" ... "\'" ... "\"" 。 .. "\'\'\'" ... "\"\"\""... "\'" ... "\"" ... "\'\'\'" ... "\"\"\"" ...

0 投票
1 回答
431 浏览

java - 使用 && 或 || 时使用括号会有所不同吗?

一个比另一个更受欢迎吗?如果是这样,为什么?

预期与实际结果相符。两者都打印字符串“works”

0 投票
1 回答
265 浏览

logical-operators - 给定 A∧B 仅使用 → 和 ⊕(Xor) 的等价物是什么

考虑仅由 → 和 ⊕ 组成的连接词集,其中 ⊕ 是异或连接词:当且仅当 A 和 B 具有相反的真值(一个为真,另一个为假)时,A⊕B 为真。

给定 A∧B 仅使用 → 和 ⊕(Xor) 的等效公式是什么。

0 投票
1 回答
42 浏览

bit-manipulation - 为什么 INT_MAX & x = x?

在 spoj 上做 ANDROUND 问题时,我想为我的段树编写查询函数。在 l、r 超出范围的情况下,我需要返回一个数字,该数字在执行 BITWISE AND 运算时不会改变答案。

在其中一个解决方案中,我观察到任何带有 INT_MAX 的数字的按位与都会返回数字本身。

为什么会这样?

0 投票
1 回答
2159 浏览

python - Python while loop number guessing game with limited guesses

For a class assignment, I'm trying to make a number guessing game in which the user decides the answer and the number of guesses and then guesses the number within those limited number of turns. I'm supposed to use a while loop with an and operator, and can't use break. However, my issue is that I'm not sure how to format the program so that when the maximum number of turns is reached the program doesn't print hints (higher/lower), but rather only tells you you've lost/what the answer was. It doesn't work specifically if I choose to make the max number of guesses 1. Instead of just printing " You lose; the number was __", it also prints a hint as well. This is my best attempt that comes close to doing everything that this program is supposed to do. What am I doing wrong?

0 投票
3 回答
475 浏览

regex - 带有负参数的正则表达式 AND 运算符

我正在尝试匹配不以任一结尾的行.!不以任."一结尾的行,!"因此它应该同时匹配两者

  • say "bye"
  • say "bye

但不应该匹配:

  • say "bye.
  • say "bye!
  • say "bye."
  • say "bye!"

我尝试使用正负前瞻,尝试按照Regex AND operator中的建议将它们用作 AND ,但我无法使其工作,我也不确定前瞻是否可行。

0 投票
1 回答
6287 浏览

if-statement - 如何在 nginx 的 IF 语句中使用 AND 运算符?

我正在尝试根据响应标头缓存请求。现在我想要的条件是,如果响应同时具有 2 个标头 client-device 和 client-location,那么响应应该缓存在 nginx 端

所以我尝试了这段代码

但是 nginx 不允许那个 nginx: [emerg] 意外的 "&&" in condition in...

无论如何要解决这个问题?提前致谢

0 投票
7 回答
2739 浏览

php - 如何在特定时间段之间在 php 中显示任何内容?

我有一个 php 代码,如下所示,我想在一周的两个日历日之间显示任何内容。

进入内部并由用户控制的$data->{"select_start_day"}; $data->{"start_time"}; $data->{"select_end_day"};$data->{"end_time"};

PHP代码:

例如,让我们假设用户输入$start_dayas sun $start_timeas 143400 $end_dayas wed $end_timeas 。140000

上述持续时间意味着我们在范围内,它应该显示我们想要显示的任何内容,直到明天下午 2 点,因为明天是星期三。我在美国东部时间。

我正在使用以下代码来提取一周中的当前日期和时间

问题陈述:

我想知道如果我需要使用逻辑以使其打印任何内容Sunday 143400Wednesday 140000.

案例:

  1. 如果本应在星期一上午 8 点星期一下午 6 点适用覆盖, 而今天是星期三,则覆盖不适用。

  2. 如果是周一下午 6 点周五下午 6 点,则覆盖将在周一周二全天周三全天周四全天周五至下午6 点工作6 小时。

  3. 如果是周日下午 6 点周一下午 6 点,则覆盖将在周一工作6 小时,周一工作18 小时

  4. 如果是周二下午 6 点周五下午 6 点,而今天是周二晚上 9 点,则将适用覆盖。

  5. 如果是星期四下午 6 点星期三下午 6 点,则覆盖将在星期四 6 小时星期五24 小时、星期六24 小时、星期日24 小时、星期一24 小时、星期二24 小时、星期三 24 小时18 小时工作。星期四