Why does psql not recognise my single quotes?

后端 未结 2 1512
陌清茗
陌清茗 2021-01-25 02:29
$ psql -E --host=xxx --port=yyy --username=chi --dbname=C_DB -c \'DELETE FROM \"Stock_Profile\" WHERE \"Symbol\" = \'MSFT\'; \'

ERROR: column \"msft\"

2条回答
  •  爱一瞬间的悲伤
    2021-01-25 02:47

    The problem you have is that you've run out of types of quote mark to nest; breaking apart, we have:

    1. your shell needs to pass a single string to the psql command; this can be either single quotes or double quotes
    2. your table name is mixed case so needs to be double quoted
    3. your string needs to be single quoted

    In the example you give:

    psql -E --host=xxx --port=yyy --username=chi --dbname=C_DB -c 'DELETE FROM "Stock_Profile" WHERE "Symbol" = 'MSFT'; '
    

    The shell sees two single-quoted strings:

    • 'DELETE FROM "Stock_Profile" WHERE "Symbol" = '
    • `'; '

    So the problem is not in psql, but in the shell itself.

    Depending on what shell you are using, single-quoted strings probably don't accept any escapes (so \' doesn't help) but double-quoted strings probably do. You could therefore try using double-quotes on the outer query, and escaping them around the table name:

    psql -E --host=xxx --port=yyy --username=chi --dbname=C_DB -c "DELETE FROM \"Stock_Profile\" WHERE \"Symbol\" = 'MSFT'; "
    

    Now the \" won't end the string, so the shell will see this as a single string:

    "DELETE FROM \"Stock_Profile\" WHERE \"Symbol\" = 'MSFT'; "
    

    and pass it into psql with the escapes processed, resulting in the desired SQL:

    DELETE FROM "Stock_Profile" WHERE "Symbol" = 'MSFT'; 
    

提交回复
热议问题