Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL은 테이블 이름을 기준으로 테이블을 표시합니까?

<시간/>

ORDER BY 절을 사용하여 INFORMATION_SCHEMA.TABLES에서 table_name 속성을 정렬할 수 있습니다. 각각 ASC 또는 DESC를 사용하여 오름차순 또는 내림차순으로 정렬합니다. 구문은 다음과 같습니다 -

SELECT table_name
FROM information_schema.tables
WHERE table_type = 'BASE TABLE' AND table_schema='yourDatabaseName'
ORDER BY table_name DESC;

이름이 sample인 데이터베이스를 사용하고 테이블이 몇 개 있습니다. 먼저 모든 테이블을 표시한 후 테이블 이름에 대한 정렬을 적용합니다. 모든 테이블을 표시하는 쿼리는 다음과 같습니다 -

mysql> show tables;

다음은 출력입니다 -

+--------------------------+
| Tables_in_sample         |
+--------------------------+
| blobsizedemo             |
| insert_prevent           |
| insertrecord_selecttable |
| insertrecordprevent      |
| mytable                  |
| newlinedemo              |
| notequaloperator         |
| sumofeverydistinct       |
| yourtable                |
+--------------------------+
9 rows in set (0.00 sec)

다음은 테이블 이름으로 정렬하는 쿼리입니다. 이제 ORDER BY 절을 사용하여 모든 테이블을 내림차순으로 표시하겠습니다 -

mysql> SELECT table_name
   -> FROM information_schema.tables
   -> WHERE table_type = 'BASE TABLE' AND table_schema='sample'
   -> ORDER BY table_name DESC;

다음은 출력입니다 -

+--------------------------+
| TABLE_NAME               |
+--------------------------+
| yourtable                |
| sumofeverydistinct       |
| notequaloperator         |
| newlinedemo              |
| mytable                  |
| insertrecordprevent      |
| insertrecord_selecttable |
| insert_prevent           |
| blobsizedemo             |
+--------------------------+
9 rows in set (0.00 sec)