Reputation: 1
I want to view the table creation statement in TDengine, So I execute the following sql:
SHOW CREATE DATABASE
However, it didn't display the entire row. How do I need to adjust it?
Upvotes: 0
Views: 32
Reputation: 41
From your description, I think this is what you need.
SHOW CREATE DATABASE\G;
Upvotes: 0