顯示具有 MsSQL 標籤的文章。 顯示所有文章
顯示具有 MsSQL 標籤的文章。 顯示所有文章

2009年6月30日 星期二

SQL資料內容置換語法

update 資料表 set 資料欄位 = replace( 資料欄位 , '舊字串', '新字串');

.

2009年4月28日 星期二

MySQL 及 MsSQL 隨機選出資料

MySQL

select * from MyTable order by RAND()

MsSQL

select * from MyTable order by NEWID()

Access

select * from MyTable order by RND(數值型的列名稱)