讀取mysql表身份證字段並解讀爲生日,性別後重新入庫--python

1.連接數據庫,執行sql腳本

readMysqlData.py

#-*- coding:utf-8 -*-
__author__ = 'grit'
__time__ = '2019-12-02'

import mysql.connector


def connect_db():
    print('開始連接數據庫')
    #打開數據庫
    db = mysql.connector.connect(
        host='127.*.*.*',         # 數據庫主機地址
        user='***',              # 數據庫用戶名
        passwd='***',          # 數據庫密碼
        database='enterprise_db_test',   # 連接已有數據庫,如果不存在則報錯
        autocommit=True
     )
    #sql = 'SELECT ID_CARD_NO FROM `bus_user` where EMP_ID < %s' % (101)
    sql = 'SELECT EMP_ID,ID_CARD_NO FROM `bus_user` where EMP_ID < %s' % (3)
    cursor = db.cursor()
    cursor.execute(sql)
    data_sql = cursor.fetchall()
    print(data_sql)
    for row in data_sql:
        print(row[1])

    cursor.close()
    db.close()
    print('ok')

#
# def read_sql_data():
#


if __name__ == "__main__":
    # read_sql_data()
    connect_db()

D:\Software\Python35\python3.exe D:/Software/python/PycharmProjects/TestDb/venv/information/readMysqlData.py
開始連接數據庫
[(1, '150922195804171319'), (2, '220582201801181811')]
150922195804171319
220582201801181811
ok

Process finished with exit code 0

拓展:

1、fetchone()與fetchall()的區別
fetchone():

 sql = 'SELECT EMP_ID,ID_CARD_NO FROM `bus_user` where EMP_ID < %s' % (3)
    cursor = db.cursor()
    cursor.execute(sql)
    data_sql = cursor.fetchone()

這時候取出來的是一維數組,也就是單條記錄,(1, ‘150922195804171319’),可以用data_sql[0],data_sql[1]分別來訪問。
print(data_sql[0]), print(data_sql[1])

1
150922195804171319

fetchall()

 sql = 'SELECT EMP_ID,ID_CARD_NO FROM `bus_user` where EMP_ID < %s' % (3)
    cursor = db.cursor()
    cursor.execute(sql)
    data_sql = cursor.fetchall()

返回多個記錄,[(1, ‘150922195804171319’), (2, ‘220582201801181811’)],訪問的時候可以用
for row in data_sql:
print(row[0],row[1])來分別訪問。
輸出結果

1 150922195804171319
2 220582201801181811

fetchmany(x)
獲取結果集的下行(指定打印出多少行數據)如: data_sql = cursor.fetchmany(2)
返回2個記錄,[(1, ‘150922195804171319’), (2, ‘220582201801181811’)],訪問的時候可以用
for row in data_sql:
print(row[0],row[1])來分別訪問。

  sql = 'SELECT EMP_ID,ID_CARD_NO FROM `bus_user` where EMP_ID < %s' % (3)
    cursor = db.cursor()
    cursor.execute(sql)
    data_sql = cursor.fetchmany(2)
    # print(data_sql)
    for row in data_sql:
        print(row[1])

輸出結果:

150922195804171319
220582201801181811

可借鑑:此篇文章

2.身份證字段值獲取生日及性別

GetInformation.py

import datetime


class GetInformation(object):

    def __init__(self, id):
        self.id = id
        self.birth_year = int(self.id[6:10])
        self.birth_month = int(self.id[10:12])
        self.birth_day = int(self.id[12:14])

    def get_birthday(self):
        """通過身份證號獲取出生日期"""
        birthday = "{0}-{1}-{2}".format(self.birth_year, self.birth_month, self.birth_day)
        return birthday

    def get_sex(self):
        """男生:1 女生:2"""
        num = int(self.id[16:17])
        if num % 2 == 0:
            return 2
        else:
            return 1

    def get_age(self):
        """通過身份證號獲取年齡"""
        now = (datetime.datetime.now() + datetime.timedelta(days=1))
        year = now.year
        month = now.month
        day = now.day

        if year == self.birth_year:
            return 0
        else:
            if self.birth_month > month or (self.birth_month == month and self.birth_day > day):
                return year - self.birth_year - 1
            else:
                return year - self.birth_year


發佈了20 篇原創文章 · 獲贊 3 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章