方法 1、
show create table table_name;可以用这个看表的代码。
show create table Strings;
方法 2、
show full columns from table_name;
show full columns from Strings;
方法 3、
show columns from table_name;
show columns from Strings;
2022-10-13 23:15:04
方法 1、
show create table table_name;可以用这个看表的代码。
show create table Strings;
方法 2、
show full columns from table_name;
show full columns from Strings;
方法 3、
show columns from table_name;
show columns from Strings;
下一篇:PL/SQL创建用户