I am new to Oracle SQL and I wasn't able to find correct answer to it.
For example I'm creating new table.
CREATE TABLE "DATASTORE"."NEWTABLE_A"
("BUSINESS_NAME" VARCHAR2(100 BYTE),
"TYPE" VARCHAR2(100 BYTE))
How do I identify the length of strings? Should have to find the longest word in column and calculate it in BYTES?
Thanks