sql >> Databáze >  >> RDS >> PostgreSQL

Vygenerujte posloupnost dat použitých ve smyčce for

SELECT *
FROM information_schema.tables
WHERE table_type = 'BASE TABLE'
    AND table_schema = 'public'
    AND table_name in (
        select 'schedule_' || to_char(d, 'YYYYMMDD')
        from 
        generate_series(current_date - 7, current_date - 1, '1 day') s(d)
        )
ORDER BY table_name;

Starší verze Postgresql:

SELECT *
FROM information_schema.tables
WHERE table_type = 'BASE TABLE'
    AND table_schema = 'public'
    AND table_name in (
        select 'schedule_' || to_char(current_date - d, 'YYYYMMDD')
        from 
        generate_series(7, 1, -1) s(d)
        )
ORDER BY table_name;


  1. MySQL:odstraňte po sobě jdoucí duplicitní hodnoty

  2. chyba protokolování log4net v protokolování databáze mysql

  3. MariaDB JSON_LOOSE() Vysvětleno

  4. Oracle SQL zřetězení řádků podle období