It turns out I was just missing DECIMAL
on the CAST()
description:
DECIMAL[(M[,D])]
Converts a value to DECIMAL data type. The optional arguments M and D specify the precision (M specifies the total number of digits) and the scale (D specifies the number of digits after the decimal point) of the decimal value. The default precision is two digits after the decimal point.
Thus, the following query worked:
UPDATE table SET latitude = CAST(old_latitude AS DECIMAL(10,6)), longitude = CAST(old_longitude AS DECIMAL(10,6));
Related Posts:
- MySQL Error: : ‘Access denied for user ‘root’@’localhost’
- How to use mysqli_query() in PHP?
- Access Denied for User ‘root’@’localhost’ (using password: YES) – No Privileges?
- MySQL Error “Operand should contain 1 column”
- How to use MySQL DECIMAL?
- Access denied for user ‘root@localhost’ (using password:NO)
- MySQL ERROR 1290 (HY000) –secure-file-priv option
- MySQL server startup error ‘The server quit without updating PID file’
- MySQL ERROR 1045 (28000): Access denied for user ‘bill’@’localhost’ (using password: YES)
- How do I quickly rename a MySQL database (change schema name)?
- What does SQL Select symbol || mean?
- Duplicating a MySQL table, indices, and data
- mysql Foreign key constraint is incorrectly formed error
- SELECT * FROM multiple tables. MySQL
- MySQL error code: 1175 during UPDATE in MySQL Workbench
- mysql: SOURCE error 2?
- How to avoid MySQL ‘Deadlock found when trying to get lock; try restarting transaction’
- MySQL foreach loop
- How to find MySQL process list and to kill those processes?
- MySQL IF NOT NULL, then display 1, else display 0
- MySQL Calculate Percentage
- Repair all tables in one go
- Get the new record primary key ID from MySQL insert query?
- How to change collation of database, table, column?
- Failed building wheel for mysql-python
- MySQL Error 1215: Cannot add foreign key constraint
- How to use the keyword ‘references’ in MySQL?
- select * from table where column = something or, when unavailable, column = something else
- Differences between utf8 and latin1
- There can be only one auto column
- MySQL Error #1071 – Specified key was too long; max key length is 767 bytes
- How To have Dynamic SQL in MySQL Stored Procedure
- What SQL Query to do a simple find and replace
- What are the recommended database permissions for WordPress?
- What’s a good strategy for planning WordPress DB growth?
- How can I find the source of slow queries in WordPress?
- Scanning Database for malicious Data
- $wpdb and MySQL Create Trigger
- wpdb->prepare function remove single quote for %s in SQL statment
- Is it useful to turn on MySQL query cache for performance
- Programmatically changing role information; editing role name and deleting
- Fulltext search in posts sorted by relevancy
- Error: MySQL shutdown unexpectedly. XAMPP local conf running WordPress
- How can I SQL update a meta_value to remove the dollar signs that were entered with the value? (so just the value remains)
- Search and replace in post content
- How can I make wordpress suppress mysql errors?
- How to bulk delete all WordPress subscribers?
- Error while importing database
- Changing Table Prefix for an Existing WordPresss Site
- Set meta_key and meta_value for all registered user in wordpress using sql query [closed]
- Mysql SELECT posts
- Connect another DB and fetch records from some tables
- Can I restart MySQL engine when WordPress website is live?
- Error: MySQL shutdown unexpectedly [closed]
- Why my wordpress loopback traffic while socket is setup?
- How to add a private user page populated from sql?
- Update or insert meta key value – On Duplicate key update
- Connect to MySQL using Windows Authentication
- Defining the same price to all WooCommerce Products
- Database Structure on Different Servers
- Active DB queries in WordPress?
- Run Username SQL Query from WordPress Child Theme Functions File
- SQL syntax error. However, it works normally at phpmyadmin
- How to get INSERT errors from $wpdb?
- How to set MYSQLI_OPT_INT_AND_FLOAT_NATIVE option
- Export Yoast Keywords from MySQL/phpMyAdmin
- Same database; different WordPress
- Editing mysql tables/database with wordpress or other app/cms
- How to insert dash (-) into database using wpdb and new_to_publish hook?
- MySQL: How to change url in posts from xxx.com to yyy.org?
- How to fetch all meta_key and meta_value using post_id wihout duplication of post meta using sql query
- Exporting completed webiste for another server
- Upgrade DB Loop – WordPress DB Version Conflict
- WordPress & MySQL , problem with use many array in meta_query
- Button writing to MYSQL database
- MySQL ‘duplicate entry’ error
- Find locations of all featured images of draft posts via SQL
- WordPress Dutch characters encoding problem
- wpdb insert into point column in db
- How to show result of sql query in a page?
- Why can’t i come back to older working version of php after ugrade with error log on php 7.2 and 7.3
- How do I insert content of various MySQL fields in post?
- WPDB delivers wrong results from complex queries
- How to change link in all posts?
- Select latest 2 articles, but only from given category
- CONCAT_WS in custom sql query
- Query does not filter duplicate _sku numbers
- Ordering topics by most replies in X days using MYSQL statement
- MySQL Select within WP Page template
- wp_postmeta – lot of meta fields
- Get data from 3rd table
- Running WordPress from MySQL Cluster with HAPRoxy
- Delete posts with word count less than x number of words
- MySQL: get post_tag items that are tags (not SEO keywords)
- $wpdb->get_var returns 0
- cannot log in to the mysql server (wamp and wordpress)
- SQL command to export post_content from wp_posts using phpMyAdmin
- Why can’t I connect to imported WP DB on local MAMP?
- InnoDB: Error: log file ./ib_logfile0 is of different size
- Postgres equivalent to MySQL’s \G?