Python Forum
Python mysql query help please
Thread Rating:
  • 2 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python mysql query help please
#1
New to python and am trying to firgure out how to do a MySQL query

Database table name is Customers
We have the customer fields named cfname, clname, caddress, ccity, cstate, and czipcode
Trying to do a search against the table Customers in which the first name and lastname are searched on or address,or city, or state or zip and return the results

The command I am trying:

mycursor.execute("""SELECT * FROM Customers WHERE cfname LIKE %s AND clname LIKE %s OR caddress LIKE %s OR ccity = %s OR cstate = %s or czipcode = %s""")%(dbcfname, dbclname, dbcaddress, dbccity, dbcstate, dbczipcode)


Thank you in advance
Tony
Reply


Messages In This Thread
Python mysql query help please - by tduckman - Mar-11-2020, 04:39 PM
RE: Python mysql query help please - by Marbelous - Mar-11-2020, 07:07 PM
RE: Python mysql query help please - by tduckman - Mar-11-2020, 08:15 PM
RE: Python mysql query help please - by tduckman - Mar-12-2020, 08:29 PM
RE: Python mysql query help please - by Marbelous - Mar-13-2020, 03:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Mysql and mysql.connector error lostintime 2 1,714 Oct-03-2023, 10:25 PM
Last Post: lostintime
  list the files using query in python arjunaram 0 1,119 Mar-28-2023, 02:39 PM
Last Post: arjunaram
  python sql query single quote in a string mg24 1 2,154 Nov-18-2022, 08:01 PM
Last Post: deanhystad
  "SUMIF" type query in Python (help required) BlainEillimatta 0 1,514 Oct-06-2022, 09:08 AM
Last Post: BlainEillimatta
  MSSQL query not working in Python kat35601 0 1,522 Apr-12-2022, 06:44 PM
Last Post: kat35601
  Mysql error message: Lost connection to MySQL server during query tomtom 6 21,594 Feb-09-2022, 09:55 AM
Last Post: ibreeden
Question Debian 11 Bullseye | Python 3.9.x | pip install mysql-connector-python-rf problems BrandonKastning 4 8,654 Feb-05-2022, 08:25 PM
Last Post: BrandonKastning
  Problem Using SQL Placeholder In MySQL Query AdeS 11 10,052 Jul-31-2021, 12:19 AM
Last Post: Pedroski55
  Error using mariadb select query with form in python? shams 2 2,893 Jul-29-2021, 12:30 PM
Last Post: shams
  Python and MySql ogautier 8 4,922 May-20-2021, 11:10 PM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

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