Skip to content

How to do dynamic tables? #864

Answered by lovasoa
hasynjo asked this question in Q&A
Discussion options

You must be logged in to vote

Hello ! Can you give a little more context about what you are building ?

Storing column names as values in the database is generally not recommended, because it can make querying and maintaining the database more complex. When designing database schemas, it is generally advised to decouple the database structure from the database contents. This makes long term maintenance and migrations easier. A common answer to your problem is to statically define in advance which views are possible. Something like

CREATE VIEW user_view_admin AS
SELECT user_name, last_name, first_name, birth_date FROM table_.user_;

CREATE VIEW user_view_employee AS
SELECT user_name, first_name FROM table_.user_;

and th…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by hasynjo
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants