我不知道如何編寫SQL代碼來獲取表1中顯示的行數爲+/- 1的rownames數。例如,因爲rownumber在彼此之內,所以我會將'Exclusive'和'Popular Episodes'計算在內。但是我不會將'Popular Movies'計算在內,因爲差距大於1.通常情況下,我會交換表格,但我只知道如何使用INTERSECT進行精確匹配。sql count其中2個表中的記錄幾乎匹配
Table 1
+------------------+-----------+
| rowname | rownumber |
+------------------+-----------+
| Exclusive | 1 |
| Popular Movies | 3 |
| New Seasons | 7 |
| Popular Episodes | 8 |
+------------------+-----------+
Table 2
+------------------+-----------+
| rowname | rownumber |
+------------------+-----------+
| Exclusive | 2 |
| Popular Episodes | 7 |
| Popular Movies | 8 |
+------------------+-----------+
在此先感謝您的幫助!
如果New Seasons在表1中爲1,而在表2中爲NULL(不存在),那麼可以計算一下嗎? –