---
title: "How would you change a column from VARCHAR(10) to VARCHAR(50)?"  
description: "How would you change a column from VARCHAR(10) to VARCHAR(50)?"  
author: "Anonymous User"  
published: 2012-04-09  
updated: 2020-09-24  
canonical: https://www.mindstick.com/interview/1425/how-would-you-change-a-column-from-varchar-10-to-varchar-50  
category: "mysql"  
tags: ["mysql"]  
reading_time: 1 minute  

---

# How would you change a column from VARCHAR(10) to VARCHAR(50)?

ALTER TABLE techpreparation_questions CHANGE techpreparation_content techpreparation_CONTENT VARCHAR(50).

## Answers

### Answer by Anonymous User

ALTER TABLE techpreparation_questions CHANGE techpreparation_content techpreparation_CONTENT VARCHAR(50).


---

Original Source: https://www.mindstick.com/interview/1425/how-would-you-change-a-column-from-varchar-10-to-varchar-50

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
