e.g.
create table dbdt (
ID int,
Name varchar(255));
when I query:
select * from dbName.information_schema.columns
where table_schema = 'schemaName' and table_name = 'dbdt'
results:
| COLUMN_NAME | DATA_TYPE |
|---|---|
| ID | NUMBER |
| NAME | TEXT |
What do I need to change in query in order to return INT and VARCHAR(255) as I set it when creating table?

