Starting off working through JSON for export and import.  I already passed 461 and most of the material is review, so I am going to start with the new items, temporal tables and JSON.
Listed below is a pretty nice tutorial on JSON for MS SQL.
Part 1 through 3.
https://www.youtube.com/watch?v=FwcuI05hnM4https://www.youtube.com/watch?v=5Zc2oct2JVohttps://www.youtube.com/watch?v=j2Uxo9sMw0A
Just a side items, to parse out individual lines using JSON, I found this script which works for me.  Instead of having it come out as one row.
Note using Adventureworks 2017 for testing......
USE [AdventureWorks2017]GO
SELECT (SELECT [AddressID]      ,[AddressLine1]      ,[AddressLine2]      ,[City]      ,[StateProvinceID]      ,[PostalCode]      ,[SpatialLocation].ToString() as location      ,[rowguid]      ,[ModifiedDate]      FOR JSON PATH, WITHOUT_ARRAY_WRAPPER)  FROM [Person].[Address]