Skip to content
Advertisement

Azure SQL Database Manipulation

Is it possible to create a table in an Azure sql database using Python? I am pulling a list of things from an API and then want to push them to a table in my Azure sql db but can not find a tutorial or guide on how to do so. Googling for it led me to tutorials on how to pull data from my db. Thanks

Advertisement

Answer

If you are using Azure SQL database, you could follow the Azure official tutorial which @ Mohamed Elrashid provided for you: Azure SQL Database libraries for Python:

Example:

Create a SQL Database resource and restrict access to a range of IP addresses using a firewall rule.

If you are using Azure Database for MySQL, please ref this Azure tutorial Python + Azure Database for MySQL.

Azure Database for MySQL and Python can be used together for data analysis – MySQL as database engine and Python as statistical tool. When dealing with large datasets that potentially exceed the memory of your machine it is recommended to push the data into database engine, where you can query the data in smaller digestible chunks.

In this article we will learn how to use Python to perform the following tasks:

Hope this helps.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement