sql查看錶-九游会j9娱乐平台
1. sql查詢表名
select * from sysobjects where xtype = 'u'
查詢資料庫中所有用戶表的信息
你的那種想法,不好實現
2. 如何查詢sql的表名
oracle的
select*fromdba_tab_cols
3. 怎樣用sql語句查詢一個資料庫中的所有表
查詢一個資料庫中的所有表sql語句是show tables;
顯示所有資料庫的命令是:show databases;要查看某個資料庫先要進入資料庫使用user <資料庫名>命令;進入資料庫之後才能查詢資料庫中有哪些表。使用以下命令即可查出所有表:
show tables;
(3)sql查看錶擴展閱讀
mysql資料庫的基本sql操作命令介紹:
1、顯示當前資料庫伺服器中的資料庫列表:mysql> show databases;
2、建立資料庫:mysql> create database 庫名;
3、建立數據表:mysql> use 庫名;mysql> create table 表名 (欄位名 varchar(20), 字
名 char(1));
4、刪除資料庫:mysql> drop database 庫名;
5、刪除數據表:mysql> drop table 表名;
6、將表中記錄清空:mysql> delete from 表名;
7、往表中插入記錄:mysql> insert into 表名 values ("hyq","m");
8、更新表中數據:mysql-> update 表名 set 欄位名1='a',欄位名2='b' where 欄位名3='c';
9、用文本方式將數據裝入數據表中:mysql> load data local infile "d:/mysql.txt" into table 表名;
10、導入.sql文件命令:mysql> use 資料庫名;mysql> source d:/mysql.sql;
4. sql如何查詢表
select xxx from yyy where zzz
xxx可以是*代表所有欄位,也可以寫具體欄位或者包含欄位、函數的表達式
yyy為表名,有些復雜查詢可以多個表組合查詢
zzz為條件,用於匹配或過濾,可以使用邏輯判斷符組合
5. sql server怎麼去查看一個表
點一下你要查看的那張表,右鍵,菜單里可以選擇-》查看依賴關系。
會跳出個窗口,默認窗口顯示的是都哪些存儲過程,哪些函數或者發布訂閱用到了該表。
6. sql server怎麼查看錶結構
sql server查詢表結構語句
--1:獲取當前資料庫中的所有用戶表 www.2cto.com
select name from sysobjects where xtype='u' and status>=0
--2:獲取某一個表的所有欄位
select name from syscolumns where id=object_id('表名')
--3:查看與某一個表相關的視圖、存儲過程、函數
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
--4:查看當前資料庫中所有存儲過程
select name as 存儲過程名稱 from sysobjects where xtype='p'
--5:查詢用戶創建的所有資料庫
select * from master..sysdatabases d where sid not in(select sid from master..syslogins where name='sa')
或者
select dbid, name as db_name from master..sysdatabases where sid <> 0x01
--6:查詢某一個表的欄位和數據類型
select column_name,data_type from information_schema.columns
where table_name = '表名'
7. sql2008怎麼查看錶的內容
1、首先登錄sql server伺服器,輸入正確的用戶名和密碼。
(7)sql查看錶擴展閱讀:
一個資料庫通常包含一個或多個表。每個表由一個名字標識(例如「客戶」或者「訂單」)。表包含帶有數據的記錄(行)。
下面的例子是一個名為 "persons" 的表:
id
lastname
firstname
address
city
1 adams john oxford street london
2 bush george fifth avenue new york
3 carter thomas changan street beijing
上面的表包含三條記錄(每一條對應一個人)和五個列(id、姓、名、地址和城市)。
sql 語句
您需要在資料庫上執行的大部分工作都由 sql 語句完成。
下面的語句從表中選取 lastname 列的數據:
select lastname from persons
結果集類似這樣:
lastname
adams
bush
carter
8. 怎樣用sql語句查詢一個資料庫中的所有表
1、打開microsoft sql server 2012,選中需要查詢所有表的資料庫。
9. sql 查詢所有表
你這里錯了where id=object_id(select table_name from information_schema.tables where table_type='base table') and indid<2
結構是這樣的where id in(select 。。。。)and 。。。這是id條件是一個集合時或者 where id = (select。。。)and(條件)這是id條件為一個類型值時。不能id=object_id又緊接著括弧(。。)。我也不知道你要實現什麼,你也沒說明白。只是說出你錯在哪。至於select里的字元串怎麼連接例如:'a' 'bbb' 加號就是連接運算符了。
10. sql創建了表,在哪裡查看
1、首先在電腦中打開sql之後,打開navicate,新建一個查詢,如下圖所示。