I have a Master DataTable with columns: Name, URL, Site Address, EmailID. I also have an API DataTable with columns: URL, Address, Name, EmailID. I need to check if each URL from the API DataTable is present in the Master DataTable. If the URL is found in the Master DataTable, I need to update the corresponding row’s columns with values from the API DataTable. If the URL is not found in the Master DataTable, I need to append a new row to the Master DataTable with all the details from the API DataTable.
Can you please help me with updating the rows in the Master DataTable if the URL is present?