sql怎麼查看數據
工具/材料:Management Studio。
1、首先雙擊「Management Studio」圖標,打開SQL Server。
B. sql 資料庫 怎麼查看 自己導入的數據
簡單的做法就是:
select 姓名 from 客戶表 where month(生日)=月整型數 and day(生日)=日整型數。
比如想查詢生日是10月6日的。那麼語句可以寫成:
select 姓名 from 客戶表 where month(生日)=10 and day(生日)=6
就可以了.
C. sql如何查詢第一個數據
sql如何查詢第一個數據的方法。
如下參考:
1.首先,雙擊「ManagementStudio」圖標打開SQLServer。
D. sql中怎麼查詢數據最新的數據
--測試數據
declare @t table(id int ,DATA int ,[update] int)
insert into @t select
1, 12, 20080401 union all select
1, 13, 20100501 union all select
1, 15, 20090601 union all select
2, 13 , 20080401 union all select
2 , 4 , 20080904 union all select
3 , 4 , 20090405 union all select
3 , 1 , 20100105
--以下為語句:
select *
from @t a
where not exists (select * from @t b where a.id = b.id and b.[update] > a.[update])
--運行後結果如下
id data update
====================
1 13 20100501
2 4 20080904
3 1 20100105
E. sql 如何查詢一個數值在資料庫的哪個表中
哥們兒,資料庫不會這么用的,雖然能做到
如:
1、聲明游標
//關鍵,查詢表名,通過游標可以控製表名逐行篩選
select name from sysobjects
where type='U'
2、開始游標,得到表名@tablename
3、循環拼接sql語句並判斷
@sql = 'select * from ' + @tablename + ' where 1 = 1'
select @sql += ' or name = ' + 你的值 from syscolumns where id = object_id(@tablename)
exec(@sql) --得到的結果,最後你需要怎麼處理就怎麼處理,這里返回的是表
以上只是思路,我是沒這么用過,你自己看著辦
F. 如何查看sql數據 操作記錄日誌
方法一:
可以通過執行該命令來查看錯誤日誌信息:exec xp_readerrorlog
方法二:
在SQL SERVER Management Studio中連接該sql server實例,object Explorer中查找Management->SQL Server logs->右鍵選view-》選擇你要看的日誌信息(sql server log or sql server and Windows log)
方法三:
去安裝路徑下去找你的log文件,我的默認實例路徑如下
driver:\SQL Server 2008 R2\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG
G. sql資料庫怎麼查看數庫的信息
sp_helpdb
報告有關指定資料庫或所有資料庫的信息。
語法
sp_helpdb [ [ @dbname= ] 'name' ]
參數
[@dbname=] 'name'
是要為其提供信息的資料庫名稱。name 的數據類型為 sysname,無默認值。如果沒有指定 name,則 sp_helpdb 報告 master.dbo.sysdatabases 中的所有資料庫。
返回代碼值
0(成功)或 1(失敗)
結果集
列名
數據類型
描述
name nvarchar(24) 資料庫名稱。
db_size nvarchar(13) 資料庫總計大小。
owner nvarchar(24) 資料庫所有者(例如 sa)。
dbid smallint 數字資料庫 ID。
created char(11) 資料庫創建的日期。
status varchar(340) 以逗號分隔的值的列表,這些值是當前在資料庫上設置的資料庫選項的值。
只有啟用布爾值選項時,才將這些選項列出。非布爾值選項及其對應值以 option_name=value 的形式列出。
有關更多信息,請參見 ALTER DATABASE。
compatibility_level tinyint 資料庫兼容級別(60、65、70 和 80)
H. SQL怎麼查詢一組數據
for(int i =0;i<users.count;i++)
{select * from users where nane=users[i]}
這樣查出來根本不止一個datatable了啊!
你這里說的查詢不得法,在For循環裡面每循環一次都查詢一次,放到List裡面去就行了.
SqlDataAdapter adp=new SqlDataAdapter();
DataSet ds=new DataSet();
For(int i=0; i<users.count; i++)
{
adp.selectCommandText="select * from USER where name='"+users[i].name+"'"
adapter.fill(ds)
......................
list.add(user...password...);
}
I. 用SQL資料庫如何查看資料庫的用戶
select * from tableName;
tableName是資料庫中注冊用戶表。
查詢具體的欄位:
SELECT column_name,column_name FROM tableName;
例子:
獲取名為 "LastName" 和 "FirstName" 的列的內容(從名為 "Persons" 的資料庫表):
SELECT LastName,FirstName FROM Persons;
(9)sql怎麼查看數據擴展閱讀:
獲取資料庫所有表的欄位及其欄位
select table_name,column_name,column_comment,column_type,column_key from information_schema.Columns
where table_schema='資料庫'
獲取資料庫某個表的欄位及其欄位
select table_name,column_name,column_comment,column_type,column_key from information_schema.Columns
where table_name='表名' and table_schema='資料庫'
J. 在SQL中怎麼查看版本號
方法一:通過代碼
打開sqlserver管理器,連接進入資料庫,然後點擊「新建查詢」。