Since version 5.2.1 you can view this information in SQL Editor by running: SHOW CREATE TABLE <table or view name>;
Similarly, you could get this information from pymapd:
DDL = con.execute('''
SHOW CREATE TABLE <table or view name>
''')
list(DDL)
Since version 5.2.1 you can view this information in SQL Editor by running: SHOW CREATE TABLE <table or view name>;
Similarly, you could get this information from pymapd:
DDL = con.execute('''
SHOW CREATE TABLE <table or view name>
''')
list(DDL)
Comments
0 comments
Article is closed for comments.