2009/05/01

date_format関数

accessフォームのリストボックスに日付フィールドを表示。
狭いので日付表示yyyy/mm/ddを変更する。

そのままであれば、
select sampledate from TableName;
で呼び出して、
set me.listbox_0.RecordSet = Rs
で問題なし。

mm/ddに変更するため、mySQLの関数を利用。
select date_format(sampledate,'%m/%d') from TableName;
これは残念な結果になる 'バイナリ'

さらにmySQLの関数を利用。convert(xxxx ujing CharSet)
select convert(date_format(sampledate,'%m/%d') using sjis) from TableName;

0 件のコメント: