一、全心投入工作(work harder at what you do):當你工作時,一定要全心投入,不要浪費時間,不要把工作場所當成社交場合。光這個秘訣,如果你能長期實踐,就能使你的生產力加倍。 二、工作步調快(work faster):養成一種緊迫感,一次專心做一件事,並且用最快的速度完成,之後,立刻進入下一件工作。養成這習慣後,你會驚訝地發現,一天所能完成的工作量居然是如此地驚人。 三、專註於高附加值的工作(work on higher-value
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->if exists (select * from dbo.sysobjects
今天,qq好友中有個哥們,參加一個面試,裡面有個行列轉換的題目。當時他有些蒙,回來後,看看群裡有人,就拿出來一起分享。 結果: 看了一下,知道這是一個標準的行列轉換的問題,說實在的我只是知道,真的沒有仔細研究過。按自己的思路寫了一個簡單的 CodeCode highlighting produced by Actipro CodeHighlighter
http://www.yuanma.org/data/2006/0718/article_1163.htm// search.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "LinkTable.h"#define MAX_KEY 500//------------------------------數組實現部分---------------------------
CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/*功能:擷取字串中的字母*/CREATE FUNCTION dbo.F_Get_STR (@S VARCHAR(100))RETURNS VARCHAR(100)ASBEGIN WHILE PATINDEX('%[^a-z]%',@S)>0 BEGIN
7. 查詢第xxx行資料假設id是主鍵: select * from (select top xxx * from yourtable) aa where not exists(select 1 from (select top xxx-1 * from yourtable) bb where aa.id=bb.id) 如果使用遊標也是可以的 fetch absolute [number] from [cursor_name] 行數為絕對行數8. SQL Server日期計算a.