Consider the ColdFusion query below:
<CFQUERY name="get_BillInfo" datasource="MJ_Escrutinio">
    Select BillNum, BillType, SpanDesc, EnglDesc, Conferencia, FortalezaRef, Equivalencia, FortalezaSuffix
    From dbo.LT_Bills
    Where BillID = #BillID#
</CFQUERY>
I'm having difficulties in running this query in Pycharm using a Microsoft SQL Server connector, is shows me the following error "Invalid column name 'BillID'", is there any possibility or translation on how to define the main cause of the problem?