I have a really basic question. Say I have a string column `x`. How do I add missing values to this column? The follow code produces a type mismatch error. What's causing this error, and how can I add the missing values?

Code:
sysuse auto, clear
gen x = "string column"
replace x = . if mpg > 20