Python Forum
python sql query single quote in a string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
python sql query single quote in a string
#1
Hi Team,

I am extracting sql table data via python , while extracting data , portfolio contains single quote in its records.


hence my second select query is not working. due to single quote in strings portfolio.
how to handle dynamically.

and portfolio = ‘xx_xxxxx_spread_jun’22’ <-------------‘22’ issue here.


select * from customer.table1 where
MarketDate = '2022-06-30-00:00:00'
and portfolio = 'xx_xxxxx_spread_jun'22'


clubbing sql records and header into variable Info.

1) first query.

result = cursor.execute(qr1)
for idx,row in enumarate(result,start=1)
	info = dict(zip(hd,row))

	qry2 = 
		"""select * from {database}.[dbo].[{tbl}] where
		[MarketDate] = '{info[MarketDate]}'and
		[Portfolio] = '{info[Portfolio]}"""


2) second query.
	output2 = cursor.execute(qr2)  <------- unable to execute query2
Reply


Messages In This Thread
python sql query single quote in a string - by mg24 - Nov-18-2022, 07:40 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  list the files using query in python arjunaram 0 739 Mar-28-2023, 02:39 PM
Last Post: arjunaram
  Need help on how to include single quotes on data of variable string hani_hms 5 2,289 Jan-10-2023, 11:26 AM
Last Post: codinglearner
  python Multithreading on single file mg24 3 1,906 Nov-05-2022, 01:33 PM
Last Post: snippsat
  "SUMIF" type query in Python (help required) BlainEillimatta 0 950 Oct-06-2022, 09:08 AM
Last Post: BlainEillimatta
  MSSQL query not working in Python kat35601 0 977 Apr-12-2022, 06:44 PM
Last Post: kat35601
  Error using mariadb select query with form in python? shams 2 2,114 Jul-29-2021, 12:30 PM
Last Post: shams
  Parse String between 2 Delimiters and add as single list items lastyle 5 3,534 Apr-11-2021, 11:03 PM
Last Post: lastyle
  Python mysql query help please tduckman 4 4,452 Mar-13-2020, 03:42 PM
Last Post: Marbelous
  How to double quote filenames (spaces)? Winfried 2 3,569 Jan-25-2020, 09:39 PM
Last Post: Winfried
  Converting query string as a condition for filter data. shah_entrance 1 1,865 Jan-14-2020, 09:22 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020