Featured Post

15 Python Tips : How to Write Code Effectively

Image
 Here are some Python tips to keep in mind that will help you write clean, efficient, and bug-free code.     Python Tips for Effective Coding 1. Code Readability and PEP 8  Always aim for clean and readable code by following PEP 8 guidelines.  Use meaningful variable names, avoid excessively long lines (stick to 79 characters), and organize imports properly. 2. Use List Comprehensions List comprehensions are concise and often faster than regular for-loops. Example: squares = [x**2 for x in range(10)] instead of creating an empty list and appending each square value. 3. Take Advantage of Python’s Built-in Libraries  Libraries like itertools, collections, math, and datetime provide powerful functions and data structures that can simplify your code.   For example, collections.Counter can quickly count elements in a list, and itertools.chain can flatten nested lists. 4. Use enumerate Instead of Range     When you need both the index ...

How to Call SQL Query from Python

Python's top supported database is MySQL. You can run SQL queries from Python. Here're best examples of how to connect to MYSQL and access MYSQL tables from Python.


Read: How to Print String in Next Line Easily


Here are Steps

  1. Import MySQL connecter
  2. Give user id, password details
  3. Issue SQL query


Python Logic to import MySQL connector


import mysql.connector


Note: If the MySQL connecter not installed in python, you need to install it using the below command.


pip3 install mysql-connector-python --allow-external mysql-connector-python


How to Call SQL Query from Python



Supply user id and Password


conn=mysql.connector.connect(user='root', password='password', host='localhost', database='sakila')



mycursor=conn.cursor()


Issue SQL Query



mycursor.execute("show tables") # you won't see any result. You need to give print.


print(mycursor.fetchall())


mycursor.execute("select * from customer") # you won't see any result. You need to give print.


print(mycursor.fetchall())


This way you can issue SQL queries in Python.


Read: Top 100 Hadoop Interview Questions 1 of 4

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)