pandas访问postgresql数据库简明指南

使用read_sql_table、read_sql_query
先看数据表字段:

class FailureType(models.Model):
    name = models.CharField(max_length=100)
# 记录
class SimpleRollInRecord(models.Model):
    order_no = models.CharField(max_length=20,
                                default=datetime.strftime(datetime.now(), '%Y%m%d%H%M%S'))
    failure_type = models.ForeignKey(FailureType, on_delete=models.CASCADE, null=True)  # 4

failure_type 是外键,sql语句中使用join连接

你可能感兴趣的:(pandas,postgresql)