how to get table schema sql pyodbc

Solutions on MaxInterview for how to get table schema sql pyodbc by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "how to get table schema sql pyodbc"
Bree
23 Nov 2016
1# columns in table x
2for row in cursor.columns(table='x'):
3    print(row.column_name)
4