i have a list where one column has a type of file attachment. when you load this list in labkey, that column renders with the file icon and it is a link to download the file. if i write this query:
select * from lists.myTable
then the file columns render normally. if i do:
select column1, fileColumn from lists.myTable
then the file columns render with the file icon, but they are not links to download the file. should I do writing the second SQL differently? the reason I do not want select * is two-fold. first, I'm writing this second query so that users cannot see some of the original columns, even if they try. second, 'select *' causes normally hidden column to stop being hidden.
thanks. |