Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1

  • Pramod Ithape
  • 2020-08-16
  • 102
Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1
#alter table#drop table#truncate table#des#mysql#mysql5.1#mysqlserver5.1
  • ok logo

Скачать Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1 бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1 или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1 бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Using MySQL Server 5.1 Alter Table, Truncate Table,Drop Table,Desc |Alter Table using MySQL 5.1

Create table link:
   • Create Table in My SQL Server 5.1 | Differ...  

Alter Table

Alter table query is used to modify structure of a table.
we can add, delete or modify column.

1.Adding New column in a Table
ALTER TABLE table_name
ADD column_name datatype;

Example:
Adding column grade in the table student

ALTER TABLE student
ADD grade varchar(2);

2.Dropping column from table

ALTER TABLE table_name
DROP COLUMN column_name;

Example:
Deleting column grade from the table student.

ALTER TABLE student
DROP COLUMN grade;

3.Modifying Column of a Table
ALTER TABLE table_name
MODIFY COLUMN column_name data_type;

Example:
Changing the data type and size of column roll_no of student table.

ALTER TABLE student
modify column roll_no varchar(4);

4.Rename

Alter table can also used to rename a table.

Syntax:
alter table table_name rename to new_table_name;

Example:
alter table student
rename to studentdata;

Truncate Table

This command is used to delete all the records from table

Syntax:
TRUNCATE TABLE table_name;

Example:
TRUNCATE TABLE studentnew;

DROP TABLE

DROP TABLE query is used to delete table permanently from the database.

Syntax:
drop table table_name;

Example:
drop table studentnew;

Desc

Desc query is used to display structure of table.
desc table_name;

Example:
desc student;

Комментарии

Информация по комментариям в разработке

Похожие видео

  • Truncate a Table in SQL! 🧹
    Truncate a Table in SQL! 🧹
    10 месяцев назад
  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]