level 1
nerv_dream
楼主
student 表
--显示表的字段数据类型和长度
select column_name,data_type from information_schema.columns
where table_name = 'student'
结果
stuId char
stuNamenchar
class char
自己在网上就找到能够显示数据类型的,求个能够显示长度的语句
2015年09月04日 12点09分
1
--显示表的字段数据类型和长度
select column_name,data_type from information_schema.columns
where table_name = 'student'
结果
stuId char
stuNamenchar
class char
自己在网上就找到能够显示数据类型的,求个能够显示长度的语句