VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > c#教程 >
  • C#教程之SQLserver、MySQL、ORCAL查询数据库、表、表中字段以及字段类型

本站最新发布   C#从入门到精通
试听地址  
https://www.xin3721.com/eschool/CSharpxin3721/

一、SQLServer命令

       1、查询SQLServer中的每个数据库

1
SELECT from sysdatabases

          

       2、查询SQLServer中指定数据库的所有表名         

1
select name from CFS.. sysobjects where  xtype='u'   #注意:CFS 是数据库名称

 

3、查询表中的字段以及字段类型

1
2
3
select COLUMN_name as name,data_type as type
from INFORMATION_SCHEMA.COLUMNS
where table_name = '表名'

 

  二、MySQL命令

     1、查询MySQL中的每个数据库   

1
show DATABASES

  

       2、查询MySQL中指定数据库的所有表名       

1
2
3
select table_name as name
 from information_schema.tables
where table_schema = '数据库名' and table_type = 'base table'

  

       3、查询表中的字段以及字段类型

1
select COLUMN_NAME as name,DATA_TYPE as type from information_schema.columns where table_schema='表名'

 

、ORCAL命令

     1、查询ORCAL中的每个数据库

1
select from v$tablespace

  

      2、查询ORCAL中指定数据库的所有表名       

相关教程