The below query works fine in mssql. I tried using information_schema instead of sys. But no luck in mysql.
SELECT c.NAME AS property_name,
t.NAME AS datatype
FROM sys.columns c
JOIN sys.objects o
ON o.object_id = c.object_id
JOIN sys.types t
ON t.user_type_id = c.user_type_id
JOIN sys.schemas s
ON o.schema_id = s.schema_id
WHERE s.NAME ='{0}'
AND o.NAME ='{1}