Python Forum
Creating table in MySQL db with decimal number issue
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Creating table in MySQL db with decimal number issue
#1
New coder here. I am working on code to create a simple MySQL table and I want a number value to have decimals. I used the DECIMAL data type and specified the digits and decimal places:

CREATE TABLE products3 (product VARCHAR(255), price DECIMAL(12,2), PRIMARY KEY(product))

I am able to commit data to it but when I select the data the number value looks like this:

('Lumber-2x4x96 inch', Decimal('5.50'))

I expected to see just the actual number value and not the "Decimal" with parenthesis. Am I doing something wrong or is there a way to strip off the non-number portion of the decimal value?
Reply


Messages In This Thread
Creating table in MySQL db with decimal number issue - by dangermaus33 - Nov-20-2020, 07:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Mysql and mysql.connector error lostintime 2 683 Oct-03-2023, 10:25 PM
Last Post: lostintime
  Mysql Workbench table not updated CatBall 2 1,111 Feb-13-2023, 05:37 PM
Last Post: CatBall
Photo How to select NULL and blank values from MySQL table into csv python300 9 2,445 Dec-27-2022, 09:43 PM
Last Post: deanhystad
  Issue in writing sql data into csv for decimal value to scientific notation mg24 8 3,054 Dec-06-2022, 11:09 AM
Last Post: mg24
  Mysql error message: Lost connection to MySQL server during query tomtom 6 16,088 Feb-09-2022, 09:55 AM
Last Post: ibreeden
  List to table issue robdineen 2 1,464 Nov-07-2021, 09:31 PM
Last Post: robdineen
  Calculate the Euler Number with more decimal places Pedroski55 10 4,513 Oct-31-2021, 04:45 AM
Last Post: Pedroski55
  SaltStack: MySQL returner save less data into Database table columns xtc14 2 2,168 Jul-02-2021, 02:19 PM
Last Post: xtc14
  Creating a table in SQLite3 djwilson0495 2 2,061 Aug-10-2020, 03:01 PM
Last Post: djwilson0495
  Load table from Oracle to MYSQL using python himupant94 0 1,645 May-12-2020, 04:50 PM
Last Post: himupant94

Forum Jump:

User Panel Messages

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