I have a column in a table filled with Handy Statuses that are "Rev_0", "Rev_1", "Rev_2", "Rev_3".
I'm trying to use the Table Transform macro to filter this table down to certain Rev's, like so:
SELECT * FROM T* WHERE 'Rev_#' = "Rev_0";
(Table Transform's SQL Query section says to reference columns using single quotes.)
This is everything I've tried so far:
SELECT * FROM T* WHERE 'Rev_#' = "Rev_0";
SELECT * FROM T* WHERE 'Rev_#' = 'Rev_0';
SELECT * FROM T* WHERE 'Rev_#' = Rev_0;
SELECT * FROM T* WHERE 'Rev_#' = "REV_0";
SELECT * FROM T* WHERE 'Rev_#' = 'REV_0';
SELECT * FROM T* WHERE 'Rev_#' = REV_0;
SELECT * FROM T* WHERE 'Rev_#' = 0;
. . . And much, much more, frankly.
Thank you for any and all assistance!
SELECT * FROM T* WHERE ('Rev_#' = "REV_0")
This finally did the trick.
Hi @Denver Thomas ,
Indeed the issue was in the extra ; at the end of the query, you were faster than us. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Denver Thomas ,
Thank you for mentioning our Handy Macros for Confluence app!
Just to let you know, you’re always welcome to reach out anytime, as our support team is here to help. If you have any concerns or ideas about the app functionality, you can contact our support, and we gladly assist you and propose solutions where applicable.
Have a lovely Friday!
Best,
Anastasia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.