개발

mysql | table status 조회, auto_increment

AM0530 2020. 11. 5. 14:55

1. 

table status 조회 쿼리 

show table status 
from test_2020 
where name = 'table_name' 

// test_2020 = db명, schema 

// table_name = table명

해당 쿼리를 실행했을때 나오는 항목중 Auto_increment 가 row추가시 부여되는 번호이다. 

 

 

참고사이트 

www.mysqlkorea.com/sub.html?mcode=manual&scode=01&m_no=21660&cat1=13&cat2=383&cat3=417&lang=k

 

:::MySQL Korea:::

13.5.4.21. SHOW TABLE STATUS    SHOW TABLE STATUS [FROM db_name] [LIKE 'pattern'] SHOW TABLE STATUS 는SHOW TABLE와 같이 작동하지만, 각 테이블에 대한 많은 정보를 제공한다. mysqlshow --status db_name  명령을 사용하는이

www.mysqlkorea.com