Blob type column : blob « Data Type « Oracle PL / SQL






Blob type column

 

SQL> create table myTable
  2     (c1 number primary key,
  3     c2 blob);

Table created.

SQL>
SQL> drop table myTable;

Table dropped.

   
  








Related examples in the same category

1.Read data in for sql statement
2.Initialize blob type data
3.Read blob type data, DBMS_LOB.READ
4.A PL/SQL block to read an operating system file called BLOB.JPG that contains 1 row of binary data.