I have data saved in a postgreSQL database. I am querying this data using Python2.7 and turning it into a Pandas DataFrame. However, the last column of this dat
postgreSQL
df = pd.concat([df['a'], df.b.apply(pd.Series)], axis=1)