I have this simple table which I would like to use to store files.
CREATE TABLE table(
ID INTEGER NOT NULL,
FILE_NAME TEXT,
FILE OID
)
;
Is there any way with SQL query to count the total size of the files into the table? Is this possible without function?