1樓:墨汁諾
exec sp_columns 表名
來 --返回某個
源表列的bai資訊
exec sp_help 表名 --檢視某個表的所有資訊這些是系統的儲存過du程
例如:zhi
用sql語句查詢一個資料表所dao有欄位的型別可以參考下面的**:
select
name as column_name,type_name(system_type_id) as column_type,
2樓:①捻玬楓
exec sp_columns 表名 --返回某個表列的資訊
exec sp_help 表名 --檢視某個表的所有資訊
這些是系統的儲存過程
不知道是不是你要的
3樓:匿名使用者
你只需要在select後面寫copy上你想要檢視的列 然後from 表名 where 條件 就行了 檢視全部列的資訊 直接在select後面加*
例: select * from 表名 (顯示錶中全部列的資訊)
select 姓名 from 表名 (顯示錶中姓名這個列的資訊)
4樓:黑の邊緣
select * from 表名
select 列名,列明,列明,··· from 表名
怎樣查詢sql資料庫中某一個表中的某個列的一個數值的所有行資料
怎樣查詢sql資料庫中某一個表中的某個列的一個數值的所有行資料?
sql如何查詢一張表的所有欄位並按其中一個欄位進行分組
5樓:匿名使用者
1、建立測試表,
create table test_group_cols(id number, value varchar2(20), remark varchar2(20));
2、插入測試資料
insert into test_group_cols values(1,'15y','rmk1');
insert into test_group_cols values(2,'15y','rmk1');
insert into test_group_cols values(3,'25x','rmk2');
insert into test_group_cols values(3,'333','rmk4');
insert into test_group_cols values(3,'666','rmk3');
insert into test_group_cols values(4,'35s','rmk1');
insert into test_group_cols values(4,'77','rmk1');
3、查詢該表的所有欄位,select t.*, rowid from user_tab_cols t where table_name = upper('test_group_cols'),可以發現共有3個欄位,
4、編寫sql,按id欄位進行分組,select id, count(*) from test_group_cols t group by id,
6樓:汐日南莘
group by 語句用於結合合計函式,根據一個或多個列對結果集進行分組。
group by 也可以同時使用多個欄位進行分組
例子:假設一個表tab有一個id欄位、一個name欄位,內容如下
id name
3 張三
5 李四
1 王五
1 趙六
sql 語句
select * from tab group by id
這條sql的結果應該是
id name
1 王五
3 張三
5 趙六
第一個name顯示的是王五 因為sql group by滿足條件的有多個時是取第一個的
上面的結果並沒有什麼實際意義 group by 一般結合合計函式一起使用
比如 sql語句
select id, count(*) total from tab group by id
用於統計每個id有多少個
結果id total
1 2
3 1
5 1
7樓:
select * from 表
group by 其中一個欄位名稱
8樓:風飛
select * from 表名 group by 欄位
一定會報錯的,select 後面1 是分組的欄位,要麼是聚合函式 max min sum arg 等
你分組是要進行匯**一計嗎?要是這樣的話,你就加聚合函式就好 了
9樓:匿名使用者
group by 必須搭配 聚組函式一起使用。使用order by ,可以達到你要的效果
10樓:帽子叔叔大
select * from
如何使用SQL語句建立表,要完整的語句。
create table 表名 屬性名 該屬性的取值的型別,name char 15 birthday datetime,totalmoney integer create table 表名。列名 變數型別 附加條件,以了。sql語句建立表 建立一個基本的表需要做的工作包括 命名表 定義列和各列的數...
如何通過語句將excel表資料寫入sql server
傳送門 在查詢分析器裡,直接寫 sql語句 如果是匯入資料到現有表,則採用形式 insert into 表 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr yes database c test.xls sheet1 如果是匯...
SQL如何通過語句更改表裡的某列的型別
select convert 化的型別,資料庫欄位 as 從命名from 資料庫的表名 如 select convert int,userid as uidfrom usertable select convert nvarchar,userid as uid from usertable sele...