Populate Table component from SQL Server table #108
Answered
by
lovasoa
Pieter3033
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
lovasoa
Oct 20, 2023
Replies: 2 comments 3 replies
-
Now I realize that the above loop will create a table component for the ammounts of id's, but when I attempt to implement it inside of the row_level_parameter I can't see how the syntaxes will match |
Beta Was this translation helpful? Give feedback.
0 replies
-
You are getting into very complicated things. You just need to select from your table directly. select 'table' as component;
select Username from JC_User_Info; That's all. That will populate the table component with a single column named Username and the values from the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Pieter3033
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are getting into very complicated things. You just need to select from your table directly.
That's all. That will populate the table component with a single column named Username and the values from the
JC_User_Info
table.