幫助。 T_T從table1連接table2中選擇id,table1.column1 + table2.column2作爲總數。如果table2.column2沒有價值呢?
表1
+---------------+---------+-------------------+
| allowances_id | desc_id | column1 |
+---------------+---------+-------------------+
| 1 | 1 | 64055.35594866848 |
| 2 | 4 | 55627.97197247496 |
| 3 | 6 | 55627.97197247496 |
| 4 | 7 | 55627.97197247496 |
| 5 | 8 | 55627.97197247496 |
| 6 | 9 | 55627.97197247496 |
| 7 | 2 | 50293.50333209634 |
+---------------+---------+-------------------+
表2
+---------+-------+
| desc_id | total |
+---------+-------+
| 1 | 18150 |
| 4 | 18150 |
| 6 | 18150 |
| 7 | 18150 |
| 8 | 18150 |
| 9 | 18150 |
+---------+-------+
我想table1.column1 + table2.total
表1(desc_id具有2在表2 desc_id的值沒有值2所以基本上結果應該是列1 + 0.00
請提供您已經嘗試做的以及爲什麼它不起作用。 – Dmytrechko
不要害怕嘗試'選擇599 + null' ......它不會咬你。 – Drew
帶有內部連接模式的更新也不會加入id 2,因此更新不會發生。 – Drew