2013-06-21 58 views

回答

3

如果您有權訪問information_schema,則可以輕鬆獲取數據。

select * from information_schema.columns 
where (data_type = '%char' or data_type like '%text') 
and character_maximum_length > 10 
+0

我相信你的意思是'data_type LIKE'%char''。我必須使用此方法指定數據庫名稱和表名稱,但這不是問題。謝謝。 –