How to get to get column name,datatype & length etc of a table. Posted by RailsOnline on May 27, 2015 Get link Facebook X Pinterest Email Other Apps select column_name , data_type ,character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'donor_visit_details'; select * from INFORMATION_SCHEMA.COLUMNS where table_name = 'donor_visit_details'; Comments
Comments
Post a Comment