- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Introduction to Oracle CREATE TABLE statement #oracleplsql #banglatutorial #oracle
Summary: in this video tutorial, you will learn how to use the Oracle CREATE TABLE statement to create a new table in the Oracle database.
Introduction to Oracle CREATE TABLE statement
To create a new table in Oracle Database, you use the CREATE TABLE statement. The following illustrates the basic syntax of the CREATE TABLE statement:
CREATE TABLE table_name (
column_1 data_type column_constraint,
column_2 data_type column_constraint,
...
table_constraint
);
Code language: SQL (Structured Query Language) (sql)
In this syntax:
First, specify the table name
Second, list all columns of the table within the parentheses. In case a table has multiple columns, you need to separate them by commas (,). A column definition includes the column name followed by its data type e.g., NUMBER, VARCHAR2, and a column constraint such as NOT NULL, primary key, check.
Third, add table constraints if applicable e.g., primary key, foreign key, check.
#oracleplsql #banglatutorial #oracle #universityofscholars #trustcoding #786ahsanarif #oraclejavacertification
Видео Introduction to Oracle CREATE TABLE statement #oracleplsql #banglatutorial #oracle канала TrustCoding
Introduction to Oracle CREATE TABLE statement
To create a new table in Oracle Database, you use the CREATE TABLE statement. The following illustrates the basic syntax of the CREATE TABLE statement:
CREATE TABLE table_name (
column_1 data_type column_constraint,
column_2 data_type column_constraint,
...
table_constraint
);
Code language: SQL (Structured Query Language) (sql)
In this syntax:
First, specify the table name
Second, list all columns of the table within the parentheses. In case a table has multiple columns, you need to separate them by commas (,). A column definition includes the column name followed by its data type e.g., NUMBER, VARCHAR2, and a column constraint such as NOT NULL, primary key, check.
Third, add table constraints if applicable e.g., primary key, foreign key, check.
#oracleplsql #banglatutorial #oracle #universityofscholars #trustcoding #786ahsanarif #oraclejavacertification
Видео Introduction to Oracle CREATE TABLE statement #oracleplsql #banglatutorial #oracle канала TrustCoding
Комментарии отсутствуют
Информация о видео
4 октября 2024 г. 8:15:50
00:13:15
Другие видео канала





















