How Do I Trim Leading and Trailing Quote from MySQL Row?

与世无争的帅哥 提交于 2019-12-29 03:29:14

问题


I have a MySQL table that I have imported from a CSV file. In this process, a bunch of the entries have quote marks leading and trailing the entry of several data rows. For example the the table 'example_table' I have a row called 'title.' Some of these titles are written as:

"title1"
"title2"
"title3"

and some are written without the quote marks:

title4
title5
title6

I have tried a variety of SQL calls to trim the row but I keep getting errors. Here is my sql call:

SELECT * FROM `example_table` TRIM(LEADING '"' FROM "title")

This is the error from MySQL when I run the call:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use

How do I go about getting rid of all the trailing and leading quotation marks from the row?


回答1:


Try:

UPDATE `example_table` 
   SET `title` = TRIM(BOTH '"' FROM `title`)

This query will updated your example_table to remove leading and trailing double quotes from the value of the title column.

If you don't want to update the table, but want to fetch the rows with double quotes removed, then use @Sam Dufel's answer.




回答2:


Just change that to

SELECT TRIM(BOTH '"' FROM title) AS trimmed_title FROM `example_table` 



回答3:


This solved my problem

UPDATE table_name SET column_name = REPLACE(column_name,'"','')



回答4:


this works for me

select trim(both '"' from column_name) from table_name;


来源:https://stackoverflow.com/questions/6718713/how-do-i-trim-leading-and-trailing-quote-from-mysql-row

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!