I want to round the numbers to 2 decimal points in a woo commerce database table wp_postmeta. There is a column \'meta_key\' with row \'_pric
wp_postmeta
\'meta_key\'
\'_pric
You can round your column with Round Function , Use function like this :
SELECT ROUND(column_name,decimals) FROM table_name;
in this case write query like below :
select Round(_Price , 2) from your table name