Question
how to find dataType of all attributes in the dataSet
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'table_name';
Above query only gives dataType at root level. but how do we find dataType of each attribute in the dataSet ?
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'table_name';
Above query only gives dataType at root level. but how do we find dataType of each attribute in the dataSet ?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.