SQL Tutorial: How to Modify a Columns Data Type

preview_player
Показать описание
Explore the full SQL Course on Udemy:

In this video you will learn how to:

- Alter Tables within a Database
- Modify a columns data type within a database table.

#sql
#postgresql
#sqltutorial
Рекомендации по теме
Комментарии
Автор

How to convert all column data types into nvarchar datatype in table

vlrslh
Автор

Hello Jon, I have watched your sql videos on Udemy but was unable to understand the significance of constraint name.. Please help me to clear this doubt..

srijanandi
Автор

ALTER TABLE payment
ALTER COLUMN amount TYPE INT
USING amount::integer;

avinashjha