“Mysql Wybierz tabele o nazwie” Kod odpowiedzi

Wybierz tabele o imieniu jak MySQL

SELECT table_name
FROM information_schema.tables
GutoTrosla

Mysql Wybierz tabele o nazwie

select table_schema as database_name,
    table_name
from information_schema.tables
where table_type = 'BASE TABLE'
    and table_name like 'cu%'
order by table_schema,
     table_name;
Pl0erre

Odpowiedzi podobne do “Mysql Wybierz tabele o nazwie”

Pytania podobne do “Mysql Wybierz tabele o nazwie”

Więcej pokrewnych odpowiedzi na “Mysql Wybierz tabele o nazwie” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu