How to convert excel formula to oracle sql. =A2&COUNTIF($A$2:A2,A2)
In excel in have 2 columns: order and helper, i am running the above formula in excel column 2, which basically copy data from order column and add suffix to same order_id.
<table>
<thead>
<tr>
<th>Order_id</th>
<th>Helper</th>
</tr>
</thead>
<tbody>
<tr>
<td>45235</td>
<td>452351</td>
</tr>
<tr>
<td>45235</td>
<td>452352</td>
</tr>
</tbody>
</table>
order_id
? In your sample data, you haveorder_id = 5407640
in three rows, and in each you add one more digit at the end (1, 2, 3). What if there are 10 such rows? Does the last row become540764010
. adding two digits (1 and 0) at the end?