Computer >> Máy Tính >  >> Lập trình >> MySQL

Hiển thị các tên bảng cụ thể với Toán tử THÍCH MySQL

Để hiển thị các tên bảng cụ thể với toán tử LIKE, cú pháp như sau -

select table_name as `anyAliasName`
    from information_schema.tables
where table_name like ‘yourValue%';

Hãy để chúng tôi thực hiện cú pháp trên để hiển thị các tên bảng cụ thể với toán tử LIKE -

mysql> select table_name as `DemoTable1600`
   -> from information_schema.tables
   -> where table_name like 'DemoTable160_%';

Điều này sẽ tạo ra kết quả sau

+---------------+
| DemoTable1600 |
+---------------+
| demotable1600 |
| demotable1601 |
| demotable1602 |
| demotable1603 |
| demotable1604 |
| demotable1605 |
| demotable1606 |
| demotable1607 |
+---------------+
8 rows in set (0.01 sec)