1

im still learning SQL for Big Query . How do i remove the "apostrophe s" in this word Let's Go** ? I do need to so some cleaning in the list of data for a single column . Thanks

Woofer
  • 9
  • 3

1 Answers1

1

use below

select replace("Let's Go", "'", "")    

with output

enter image description here

Mikhail Berlyant
  • 165,386
  • 8
  • 154
  • 230