Home > Database > Mysql Tutorial > 查看数据库中某张表的字段个数

查看数据库中某张表的字段个数

WBOY
Release: 2016-06-07 17:13:42
Original
1786 people have browsed it

Oracle中查询某个表的总字段数,要用SQL语句,或者在PL/SQL里面

Oracle中查询某个表的总字段数,,要用SQL语句,或者在PL/SQL里面

  • 能够查出来指定的那张表的字段数。

    下面是通过大致查看:

    select   tname,count(*)   from   col   group   by   tname; 此时我就联想到了mysql上面去:

    直接利用函数来解决:

    还有就是利用系统表: 在mysql中想要知道数据库中有多少个库: 在mysql数据库中有多少张表:

    其实在系统表information_schema中大多的数据库,表啊都会有记录的。所以要好好研究下这张表呢。

    Oracle中查询某个表的总字段数,要用SQL语句,或者在PL/SQL里面

    linux

  • Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template