㈠ 怎麼從一個資料庫的表中對表中的值進行查詢
第一個:select * from table where name like 'G[1-7]%'
第二個:select * from table where (convert(int,substring(name,3,1)) % 2)=0
第三個:select * from table where (convert(int,substring(name,3,1)) % 2)=1
第四個:select * from table where name like 'G9%'
答完了。。 一定沒問題的。。 呵呵。。 給分吧朋友
㈡ 在sql資料庫中怎麼查詢沒有值的數據
--顯示資料庫屬性默認值
sp_configure
--主鍵
sp_pkeys '要查的表名'
--所有列的信息,包括類型,默認值等
sp_columns '要查的表名'
㈢ 在oracle中如何找回被刪除的數據
1、首先新建一張測試表TEST,裡面輸入記錄。由於刪除/更新/插入恢復步驟相同,這里僅演示刪除數據的情況。