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

밑줄이 있는 MySQL ORDER BY 문자열?

<시간/>

먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
(
   Name varchar(100)
);
Query OK, 0 rows affected (0.60 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable values('John_Smith');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('Chris Brown');
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values('John_Doe');
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable values('David Miller');
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable values('Carol Taylor');
Query OK, 1 row affected (0.13 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+--------------+
| Name         |
+--------------+
| John_Smith   |
| Chris Brown  |
| John_Doe     |
| David Miller |
| Carol Taylor |
+--------------+
5 rows in set (0.00 sec)

다음은 밑줄이 있는 문자열로 정렬하는 쿼리입니다 -

mysql> select *from DemoTable order by (Name LIKE 'John_%') DESC,rand();

이것은 다음과 같은 출력을 생성합니다 -

+--------------+
| Name         |
+--------------+
| John_Doe     |
| John_Smith   |
| Carol Taylor |
| David Miller |
| Chris Brown  |
+--------------+
5 rows in set (0.42 sec)