select `name` + ' is here' from user結果會是:0
要做字串連接,要用
Concat
這個function,如:select CONCAT(`name`,' is here') from user
結果就會是:
bigbear is here
參考文件
select `name` + ' is here' from user結果會是:0
Concat
這個function,如:select CONCAT(`name`,' is here') from user
bigbear is here
... com.sun.xml.ws.transport.http.servlet.WSServletContextListener
select * from ( select * from mytable a order by id desc ) s;
select
,裡面的排序就沒作用。.
,應該就會跑出一串相關的方法(method)或屬性來選擇,但有時怎麼按也按不出來。
int i
。i
等於100
,即為滿足剛才設定的條件時,才會停在該中斷點:select LEN(columnName) from tableName時,其中的「columnName」需為字串型態,LEN回傳這字串中的字元數有多少。
select DATALENGTH(columnName) from tableName
top
的用法,但要做到像MySQL那樣,有limit 1, 1000
這種做法,下列是一種方式:SELECT * FROM ( SELECT *, ROW_NUMBER() OVER (ORDER BY id) as row FROM myTable) a WHERE row > 5 and row <= 10要注意的是,上列用法,只有在SQL Server 2005以後的版本才能使用。