What is the syntax in SQL for creating a widget in a notebook with a label?
This documentation says "The last argument is label, an optional value for the label shown over the widget text box or dropdown."
The one example provided on that page doesn't use a label for the widget. Here are my attempts:
CREATE WIDGET TEXT some_variable DEFAULT 'a great default' --succeeds, but no label
CREATE WIDGET TEXT some_variable DEFAULT 'a great default' 'some label/description' --syntax error
CREATE WIDGET TEXT some_variable DEFAULT 'a great default' LABEL 'some label/description' --syntax error