|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to get the size of BLOB Field by SQL?
I have a table with BLOB field to store the picture. I need to write query to display the size of the picture that store in the Blob Field. It should look similar like this.
SELECT ID, NAME, SIZEOF(PICTURE) PICSIZE FROM PICTABLE then it return the result like ID NAME PICSIZE 1 ABC 22000 2 DEF 50000 Thank in advance for any help. |
|
#2
|
|||
|
|||
|
select datalength(PICTURE) FROM PICTABLE
Quote:
|
![]() |
| Viewing: Dev Shed Forums > Databases > Firebird SQL Development > How to get the size of BLOB Field by SQL? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|