-
Is it possible to make table column headings mixed case? |
Beta Was this translation helpful? Give feedback.
Answered by
lovasoa
Jan 2, 2024
Replies: 2 comments
-
Hello and welcome to SQLPage ! select 'table' as component;
select my_column_1 as "My Column 1", my_other_column as "My Other Column"; If you have a lot of columns, you can use the
th {
text-transform: capitalize !important;
}
select 'shell' as component, 'style.css' as css;
select 'table' as component;
select * from my_table; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lozdown
-
Thanks - I find that both changes are required; providing the required column headings and overriding the default css |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello and welcome to SQLPage !
You can rename table headings however you want by using
as
:If you have a lot of columns, you can use the
css
top-level property of the shell component to apply a custom style to your table:style.css
:page.sql