1隨機取出10條資料
select top 10 * from ma_lot
order bynewid()
2.隨機選擇記錄
select newid()
3.列出資料庫裡所有的表名
select name from sysobjects where type='u' // u代表使用者
4.列出表裡的所有的列名
select name from syscolumns where id=object_id('ma_lot ')
5.
初始化表table1 刪除資料之後,可以使標識列重新從1開始
truncate table table1
經典SQL語句收集
選擇表的前10條 select top 10 from 表 order by 需要排序的字段 選擇表的11 20條 select from select row number over order by 需要排序的字段 as id,from 表 awhere id between 11 and 20...
SQL語句收集
use tablename 要操作的資料庫名 select logicalfilename tablename log 日誌檔名 maxminutes 10,limit on time allowed to wrap log.newsize 1 你想設定的日誌檔案的大小 m setup initia...
sql經典語句
說明 複製表 只複製結構,源表名 a 新錶名 b access可用 方法一 select into b from a where 1 1 方法二 select top 0 into b from a 注意 複製的新錶中的所有欄位都將沒有預設值,即使源表中有設預設值 說明 一條sql 語句搞定資料庫分...