Records in Oracle PLSQL

preview_player
Показать описание
Complete Oracle PLSQL Tutorial Playlist here
**************************************************
This Video Covers the following in Oracle PLSQL
1. Composite Data Types - Records
2. DECLARE a Implicit Record and Explicit Record
3. %TYPE
4. %ROWTYPE
5. Assigning Values to a Records
6. Fetch Values from a record
7. Difference Between Record and Collections
Рекомендации по теме
Комментарии
Автор

Nice video, you explain very well everything . Thanks Ram Sir, you are brilliant. Please make more videos on oracle database regarding performance tuning as well. Thanks again.

vijayrajjakhmola
Автор

i will not comment easily really %type was a hard thing to me i referred i guess around some 10 videos i didnt get the concept you really helped me a lot thank you<3

anupb.a
Автор

Hi ram, can you please can explain diference between record and collection when go for record and collection.

ramatharunreddybuchupalli
Автор

really thanks for you video, You are awsome ^^

MyGamezon
Автор

Any PLSQL documets or other vidoes of yours.?

sreenivasaraobovanagiri
Автор

Beautifully explained, thanks! I have one question please....why do we need records? It seems that we could use a simple 'select' instead (changing the where condition). Isn't it kind of the same?
Again, thanks for the vid

CB-xkce
Автор

2. Crear una variable BIND y esta almacenará el valor 10. Esta variable se utilizará para hacer el filtro en la tabla correspondiente.
Mostrar la cantidad de empleados, y el nombre del departamento que almaceno en la variable BIND
Utilizar RECORD y %TYPE

yelsincardenasblanco
Автор

I have the table and follow your example but I can't see the table attribute pop out, I wonder why? Thanks

patyue
Автор

How to use for loop in associative array could you send me link or make any video please

satvinderbhangu
Автор

Is it possible to access the column using column number instead of column name ? Like ram_student (1), ram_student (2)

chennaibudy
Автор

How to fetch multiple data from a table... Please explain it in detail. Awaiting for your reply.

RamPrakashn
Автор

Type TDataRow is record
(s1 XTEMP.S0%TYPE,
n2 XTEMP.N0%TYPE,
d3 XTEMP.D0%TYPE,
);

Type TDataTbl is table of TDataRow;
vTbl TDataTbl;

assetFifty