I**A 发帖数: 2345 | 1 如果有一个table books,怎么知道这个table有哪些columns, what is the key, etc? |
o*o 发帖数: 5155 | 2 desc books;
etc?
【在 I**A 的大作中提到】 : 如果有一个table books,怎么知道这个table有哪些columns, what is the key, etc?
|
I**A 发帖数: 2345 | 3 huh?
i only know "desc" is used to sort the rows.
it can do this too?
what is the output of it?
【在 o*o 的大作中提到】 : desc books; : : etc?
|
c****o 发帖数: 1280 | 4 you can try
show columns in table_name, for more information check the following page
http://dev.mysql.com/doc/refman/5.0/en/show-columns.html
there should be one column which is designed for the keys
etc?
【在 I**A 的大作中提到】 : 如果有一个table books,怎么知道这个table有哪些columns, what is the key, etc?
|
t****a 发帖数: 1212 | 5 show create table books; |
d**e 发帖数: 6098 | 6 Oracle:
最简单是 desc books,
或者 select * from user_tab_columns where table_name = 'BOOKS' 会详细一些。
key之类,可以用这个
select b.constraint_name, b.column_name, b.position
from user_constraints a, user_cons_columns b
where a.constraint_name = b.constraint_name
and a.table_name = 'BOOKS'
order by b.constraint_name, b.column_name, b.position;
其它的database,我想也有类似的
etc?
【在 I**A 的大作中提到】 : 如果有一个table books,怎么知道这个table有哪些columns, what is the key, etc?
|
I**A 发帖数: 2345 | 7 thank you all..
"user_tab_columns" is a keyword?
【在 d**e 的大作中提到】 : Oracle: : 最简单是 desc books, : 或者 select * from user_tab_columns where table_name = 'BOOKS' 会详细一些。 : key之类,可以用这个 : select b.constraint_name, b.column_name, b.position : from user_constraints a, user_cons_columns b : where a.constraint_name = b.constraint_name : and a.table_name = 'BOOKS' : order by b.constraint_name, b.column_name, b.position; : 其它的database,我想也有类似的
|
d**e 发帖数: 6098 | 8 属于一个system view,对应login ID
原始应该是 all_tab_columns,column OWNER 可以指定谁的table
【在 I**A 的大作中提到】 : thank you all.. : "user_tab_columns" is a keyword?
|
I**A 发帖数: 2345 | 9 en, this one would be the one that they want..
【在 c****o 的大作中提到】 : you can try : show columns in table_name, for more information check the following page : http://dev.mysql.com/doc/refman/5.0/en/show-columns.html : there should be one column which is designed for the keys : : etc?
|