Inserting variable in BSQL

Hi :wave:

I've search the community but couln't find an answer...
Is it possible to add variable to BSQL command ?
I'd like to automatically add the data coming from a selector on a website to get a certain row of a table.
I've tried with the clipboard but I can't make it work, the variable is not replaced at query time :

{dbselect: SELECT Autocomplete FROM Conversations WHERE Email = {clipboard} LIMIT 1; space=xxxx; menu=no}

or

{dbselect: SELECT Autocomplete FROM Conversations WHERE Email = "{clipboard}" LIMIT 1; space=xxxx; menu=no}

or

I've double check, my clipboard contains an existing value.

Hey @Thibault_Vigouroux,
Welcome to the community.

Please try this snippet.

{clipboarddata={clipboard}}
{dbselect: SELECT Autocomplete FROM Conversations WHERE Email = @clipboarddata LIMIT 1; space=xxxx; menu=no}

Working fine ! Thank you for the tip !