superman
superman

Reputation: 1

How to display the entire row of sql statement in TDengine?

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

Answers (1)

cpvmrd
cpvmrd

Reputation: 41

From your description, I think this is what you need.

SHOW CREATE DATABASE\G;

Upvotes: 0

Related Questions