Last active
December 18, 2015 11:49
-
-
Save n-tran/5778726 to your computer and use it in GitHub Desktop.
had some bad quotes(") in the name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use mip_portal | |
go | |
select geo_name, rtrim(ltrim(REPLACE(geo_name,'"',''))) | |
from geo | |
where geo_set_id = 169 | |
order by geo_name | |
-------------------------------------------- | |
--CODE BELOW HAS ALREADY BEEN EXECUTED | |
-------------------------------------------- | |
/* | |
update geo | |
set geo_name = rtrim(ltrim(REPLACE(geo_name,'"',''))) | |
where geo_set_id = 169 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment