唯一一張有照到主角
以上為離開薑母鴨店前在門口拍的
以下為抵達螞蟻咖啡後拍的
可可的3Q
可可的Mocha
不管怎麼看
很明顯的,3Q比較可愛
最後要感謝Lexelㄉㄉ,終於不辭辛勞地在凌晨兩點把我們送回台北 :-)
歡迎收看來自一個geek的胡言亂語。。。
對於大部分的初學者(eg. Myself)來說,以下兩個SQL指令應該是差不多的:
(1) select distinct a from table_a;以上這兩個指令都是用來從table_a中找出a欄位的資料,而且結果中的每一筆資料都是不重複的,但是真正執行起來(1)與(2)的效能確有天差地遠的差別!
(2) select a from table_a group by a;
以上是 阿扁大總統(注意前面有空一格喔)浪費掉的伙食(源自http://udn.com/NEWS/NATIONAL/NATS1/4598945.shtml),果然連看守所裡面的嫌犯的伙食比保國為民(沒錯!是"為"民不是"衛"民)的國軍弟兄們吃的更好,看了讓我不禁為國軍弟兄抱屈~
借轉出自學運前輩之手的"給野草莓的一封信"。
quotes:
"不夠理性、判斷力的學生,很容易就被他們激發出來了。"所以應該整理出一份參加者名單,以後HR找人的時候可以避開這些地雷。
"各位同學,講白一點,出來運動,腦筋要清楚,意志要堅定,目標要明 確,這才會帶種。今天你們被動員出來,老經驗的教授告訴你們,頂多就是被抬走不要怕(現在的人權怎麼比以前進步那麼多?),但你們有的人又是哭,又的又是 喊被打;各位同學,你們的表現,都在鏡頭面前一五一十呈現在國人的眼裏了,對照之前那些怵目驚心的暴動畫面,你們還有什麼理直氣壯告訴人民,今天我們要幫 你們爭取人權呢?"這裡像是看到一堆爛草莓不甘自己身價低要求政府/全民高價收購。
原本想說在java的ij console下執行query指令,那麼在java app裡面照著下應該也不會有問題,沒想到昨天這麼做的時候應是得到了個shema does not exist的錯誤,原文是:"綱目 'A' 不存在。"('A'是連進該DB的username,稍後會有解釋)。
Google之後在derby自己的網頁中找到答案,借quote一下:
5.3. Why do I get the error 'schema does not exist'?
The current schema for any connection defaults to a schema corresponding to the user name. If no user name is supplied then the user name (and hence current schema) defaults to APP.
However even though the current schema is set to the user name, that schema may not exist. A schema is only created by CREATE SCHEMA or creating an object (table etc.) in that schema (this is implicit schema creation).
The one exception to this is the APP schema, which is always created, though applications should not depend on that.
So you will see the schema not exists error if your application tries to access the current schema before any objects have been created in it. Possibilities are you try to perform a DROP TABLE before creating it, or try to SELECT from a table to see if it should be created or not, or when there is a problem with the sql for the very first object you try to create in a particular schema and no explicit CREATE SCHEMA was issued.