We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#5:
Добавить в документацию пример о том как получить для каждой записи столбец с названием реальной таблицы
The text was updated successfully, but these errors were encountered:
select *, xxx from megatable .... record1 | col1 | col2 | "real_table_name1" record2 | col2 | col3 | "real_table_name1" record3 | col3 | col4 | "real_table_name2"
Sorry, something went wrong.
Думаю, проще всего будет получить колонку tableoid и привести ее к типу regclass:
select tableoid::regclass, * from partitioned_table;
No branches or pull requests
#5:
Добавить в документацию пример о том как получить для каждой записи столбец с названием реальной таблицы
The text was updated successfully, but these errors were encountered: