리자

테이블의 컬럼을 상세하게 조회하기 show full columns from table;

show full columns from table;

mysql 5.x 에서는 Collation (charset) 이 나온다 필드별로...

mysql> show full columns from g4_member;
+-------------------+--------------+-----------------+------+-----+---------------------+----------------+---------------------------------+---------+
| Field             | Type         | Collation       | Null | Key | Default             | Extra          | Privileges                      | Comment |
+-------------------+--------------+-----------------+------+-----+---------------------+----------------+---------------------------------+---------+
| mb_no             | int(11)      | NULL            |      | PRI | NULL                | auto_increment | select,insert,update,references |         |
| mb_id             | varchar(255) | utf8_general_ci |      | UNI |                     |                | select,insert,update,references |         |
| mb_password       | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_name           | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_nick           | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_nick_date      | date         | NULL            |      |     | 0000-00-00          |                | select,insert,update,references |         |
| mb_email          | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_homepage       | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_password_q     | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_password_a     | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_level          | tinyint(4)   | NULL            |      |     | 0                   |                | select,insert,update,references |         |
| mb_jumin          | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_sex            | char(1)      | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_birth          | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_tel            | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_hp             | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_zip1           | varchar(3)   | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_zip2           | varchar(3)   | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_addr1          | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_addr2          | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_signature      | text         | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_recommend      | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_point          | int(11)      | NULL            |      |     | 0                   |                | select,insert,update,references |         |
| mb_today_login    | datetime     | NULL            |      | MUL | 0000-00-00 00:00:00 |                | select,insert,update,references |         |
| mb_login_ip       | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_datetime       | datetime     | NULL            |      | MUL | 0000-00-00 00:00:00 |                | select,insert,update,references |         |
| mb_ip             | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_leave_date     | varchar(8)   | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_intercept_date | varchar(8)   | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_email_certify  | datetime     | NULL            |      |     | 0000-00-00 00:00:00 |                | select,insert,update,references |         |
| mb_memo           | text         | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_mailling       | tinyint(4)   | NULL            |      |     | 0                   |                | select,insert,update,references |         |
| mb_sms            | tinyint(4)   | NULL            |      |     | 0                   |                | select,insert,update,references |         |
| mb_open           | tinyint(4)   | NULL            |      |     | 0                   |                | select,insert,update,references |         |
| mb_open_date      | date         | NULL            |      |     | 0000-00-00          |                | select,insert,update,references |         |
| mb_profile        | text         | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_memo_call      | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_1              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_2              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_3              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_4              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_5              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_6              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_7              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_8              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_9              | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
| mb_10             | varchar(255) | utf8_general_ci |      |     |                     |                | select,insert,update,references |         |
+-------------------+--------------+-----------------+------+-----+---------------------+----------------+---------------------------------+---------+
47 rows in set (0.00 sec)

mysql>

[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]
|

댓글 1개

혹시 이거를

$result= sql_query("show full columns from g4_member");

while(($rows = mysql_fetch_array($result)) == true){

eco $rows['field'].'<br>';
}

가능할까요??? ㅋㅋ;;;

작업하고 나서 디비스키마 달래거나, 디비구조도 달래면 항상 엑셀로 작업하는데 하루죙일 걸리는데,

이거는 디비구조도 나타낼때 좋겠네요.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
15년 전 조회 1,169
15년 전 조회 1,577
15년 전 조회 3,621
15년 전 조회 1,476
15년 전 조회 2,261
15년 전 조회 1,545
15년 전 조회 1,351
15년 전 조회 3,030
15년 전 조회 1,993
15년 전 조회 2,881
15년 전 조회 2,989
15년 전 조회 1,728
15년 전 조회 1,451
15년 전 조회 1,942
15년 전 조회 1,379
15년 전 조회 1,658
15년 전 조회 1,559
15년 전 조회 1,948
15년 전 조회 2,092
15년 전 조회 1,370
15년 전 조회 1,801
15년 전 조회 1,587
15년 전 조회 1,418
15년 전 조회 1,482
15년 전 조회 1,802
15년 전 조회 1,239
15년 전 조회 1,428
15년 전 조회 3,060
15년 전 조회 1,895
15년 전 조회 1,260
15년 전 조회 1,292
15년 전 조회 1,740
15년 전 조회 1,786
15년 전 조회 2,030
15년 전 조회 1,542
15년 전 조회 1,895
15년 전 조회 1,185
15년 전 조회 1,526
15년 전 조회 1,820
15년 전 조회 3,206
15년 전 조회 1,579
15년 전 조회 1,568
15년 전 조회 1,445
15년 전 조회 1,329
15년 전 조회 1,347
15년 전 조회 3,925
15년 전 조회 3,332
15년 전 조회 2,480
15년 전 조회 2,919
15년 전 조회 2,014
15년 전 조회 1,570
15년 전 조회 1,571
15년 전 조회 2,882
15년 전 조회 1,415
15년 전 조회 2,456
15년 전 조회 1,253
15년 전 조회 2,393
15년 전 조회 1,325
15년 전 조회 3,016
15년 전 조회 1,270
15년 전 조회 1,709
15년 전 조회 1,244
15년 전 조회 3,451
15년 전 조회 1,815
15년 전 조회 1,828
15년 전 조회 1,857
15년 전 조회 1,904
15년 전 조회 1,499
15년 전 조회 2,263
15년 전 조회 1,772
15년 전 조회 1,401
15년 전 조회 3,265
15년 전 조회 1,620
15년 전 조회 1,837
15년 전 조회 1,590
15년 전 조회 2,464
15년 전 조회 2,494
15년 전 조회 2,121
15년 전 조회 1,497
15년 전 조회 1,746
15년 전 조회 1,409
15년 전 조회 1,371
15년 전 조회 1,634
15년 전 조회 2,989
15년 전 조회 3,033
15년 전 조회 1,991
15년 전 조회 1,504
15년 전 조회 1,682
15년 전 조회 1,688
15년 전 조회 1,566
15년 전 조회 1,472
15년 전 조회 1,389
15년 전 조회 1,743
15년 전 조회 1,684
15년 전 조회 1,476
15년 전 조회 1,414
15년 전 조회 1,600
15년 전 조회 2,061
15년 전 조회 1,589
15년 전 조회 1,913