mysql 쿼리 테이블의 문자 집합 인코딩을 위한 두 가지 방법: 1. "show table status" 문을 사용하여 "show table status from library name from table like table" 구문을 사용하여 지정된 데이터베이스에 있는 지정된 테이블의 문자 집합 인코딩을 봅니다. 이름;". 2. 현재 데이터베이스에 있는 지정된 테이블의 모든 열에 대한 문자 집합 인코딩을 보려면 full 키워드와 함께 "show columns" 문을 사용합니다. 구문은 "show full columns from table name;"입니다.
이 튜토리얼의 운영 환경: windows7 시스템, mysql8 버전, Dell G3 컴퓨터.
mysql 쿼리 테이블의 문자 집합 인코딩을 위한 두 가지 방법
1. 지정된 테이블의 문자 집합 인코딩을 보려면 show table status
문을 사용하세요.show table status
语句查看指定表的字符集编码
SHOW TABLE STATUS
命令可以获取指定数据库中每个数据表的信息,包括字符集编码。
show table status from 数据库名;
但只想获取指定表的信息,就可利用like进行限制:
show table status from 库名 like 表名;
示例:查看class_7数据库中test_info表的字符集编码
show table status from class_7 like 'test_info';
mysql> show table status from class_7 like 'test_info'; +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_leate_time | Update_time | Check_time | Collation | Checksum | +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- | test_info | InnoDB | 10 | Compact | 10 | 1638 | 17-12-05 19:01:55 | NULL | NULL | utf8_general_ci | NULL | +-----------+--------+---------+------------+------+----------------+-------------------------+-------------+------------+-----------------+----------+- 1 row in set (0.00 sec)
2、使用show columns
语句配合full关键字查看当前数据库中指定表中所有列的字符集编码
在mysql中,SHOW COLUMNS
命令可以显示表的列信息,而要获取有关列的更多信息,请将FULL
关键字添加到SHOW COLUMNS
SHOW TABLE STATUS< /code> 명령은 문자 세트 인코딩을 포함하여 지정된 데이터베이스의 각 데이터 테이블에 대한 정보를 얻을 수 있습니다. </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">show full columns from 表名;</pre><div class="contentsignin">로그인 후 복사</div></div><p>그러나 지정된 테이블의 정보만 얻으려면 like를 사용하여 이를 제한할 수 있습니다. </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">show full columns from test_info;</pre><div class="contentsignin">로그인 후 복사</div></div><p>예: class_7 데이터베이스에 있는 test_info 테이블의 문자 집합 인코딩 보기<img src="https://img.php.cn/upload/image/406/362/962/165641610392195mysql에서 테이블의 문자 세트 인코딩을 쿼리하는 방법" title="165641610392195mysql에서 테이블의 문자 세트 인코딩을 쿼리하는 방법" alt="mysql에서 테이블의 문자 세트 인코딩을 쿼리하는 방법"/><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">mysql> show full columns from test_info;
+-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment |
+-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| id | int(3) | NULL | NO | PRI | NULL | | select,insert,update,references | |
| name | char(12) | utf8_general_ci | YES | | NULL | | select,insert,update,references | |
| dorm | char(10) | utf8_general_ci | YES | | NULL | | select,insert,update,references | |
| addr | char(12) | utf8_general_ci | YES | | 未知 | | select,insert,update,references | |
| score | int(3) | NULL | YES | | NULL | | select,insert,update,references | |
+-------+----------+-----------------+------+-----+---------+-------+---------------------------------+---------+
5 rows in set (0.00 sec)</pre><div class="contentsignin">로그인 후 복사</div></div>rrreee<img src="https://img.php.cn/upload/image/373/851/592/1656415843765267.png" title="1656415843765267.png" alt="mysql에서 테이블의 문자 세트 인코딩을 쿼리하는 방법"><p><a href="https://www.php.cn/course/list/51.html" target="_blank" textvalue="mysql视频教程"></a>2를 사용하세요. >show columns 전체 키워드가 포함된 문 현재 데이터베이스의 지정된 테이블에 있는 모든 열의 문자 집합 인코딩을 봅니다. </p>🎜🎜mysql에서 <code>SHOW COLUMNS
명령은 다음의 열 정보를 표시할 수 있습니다. 테이블에 대한 자세한 정보를 얻으려면 SHOW COLUMNS
명령에 FULL
키워드를 추가하세요. 🎜rrreee🎜이 명령문은 모든 테이블의 문자 집합 인코딩을 출력할 수 있습니다. 지정된 테이블의 열🎜🎜예: test_info 테이블의 모든 항목 보기 열의 문자 집합 인코딩🎜rrreeerrreee🎜🎜🎜🎜[관련 권장 사항: 🎜mysql 비디오 튜토리얼🎜]🎜
위 내용은 mysql에서 테이블의 문자 세트 인코딩을 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!