Comments felipe started the conversationMarch 11, 2021 at 4:54pmI need to add a new cell on a table with some like thisHTTP://www.mydomain.com/detail?id= the wdt_ID of the recordIt's possible? How?Thanks[deleted] repliedMarch 12, 2021 at 11:56amHi FelipeThank you for reaching out to us.You can create a new table using SQL query:SELECT *,CONCAT('blank">',wp_wpdatatable_1.wdt_ID,'</a>') AS hyperlinkColumnFROM wp_wpdatatable_1That way you can pull all columns and cells from the manual table (wp_wpdatatable_1) and add a new column that would have a hyperlink to http://www.mydomain.com/detail?id=VALUE_OF_WDT_ID_COLUMN1 Like Sign in to reply ...
I need to add a new cell on a table with some like this
HTTP://www.mydomain.com/detail?id= the wdt_ID of the record
It's possible? How?
Thanks
Hi Felipe
Thank you for reaching out to us.
You can create a new table using SQL query:
SELECT *,
CONCAT('blank">',wp_wpdatatable_1.wdt_ID,'</a>') AS hyperlinkColumn
FROM wp_wpdatatable_1
That way you can pull all columns and cells from the manual table (wp_wpdatatable_1) and add a new column that would have a hyperlink to http://www.mydomain.com/detail?id=VALUE_OF_WDT_ID_COLUMN