|
|
|
ผิดไปแล้วนะคะ ปัญหาของหนูตอนนี้คือ หนูเก็บข้อมูลวันที่ ในฐานข้อมูลเป็นแบบ varchar ไม่ใช่ date นะคะ |
|
|
|
|
|
|
|
อีกแล้วนะหนู พี่แนะนำว่าให้หนูเปลี่ยนเป็นรูปแบบของ Date ดีกว่านะ หนูนะ
ไม่แน่ใจว่า Mysql สามารถทำการตัด String ใน Sql Statement ได้ไหรือไม่ น่าจะได้อยู่นะครับ
แต่ Mysql ค่อนข้างจะมีข้อจำกัดพอสมควร พี่แนะนำให้หนู ๆ เปลี่ยนเป้นรูปแบบของ Date ดีกว่านะ
|
|
|
|
|
Date :
7 ม.ค. 2548 13:41:41 |
By :
@W_IN |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ค่ะ ขอบคุณนะคะ
|
|
|
|
|
Date :
7 ม.ค. 2548 17:02:34 |
By :
ผิดเป็นครู |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเขียน function convert string to date ได้มั้ยฮะ
concept ง่าย ๆ ต้องหาsymbol ที่ใช้แบ่งระหว่าง date , month and year ex. "/" , " - "
แล้วตัดออกเอาเฉพาะที่เราต้องการ
เช่น
$tmpSoure = trim("1/02/2004") ;
$post_separate = strpos( tmpSource , '/' , 0);
$tmpDate = substr( tmpSource , 0 , $post_separate);
$NewLenSource = strlen(tmpSource) - ( $post_separate +1);
$tmpSource = substr( tmpSource , $post_separate+1, $NewLenSource);
$post_separate = strpos( tmpSource , '/' , 0);
$tmpMonth = substr( tmpSource , 0 , $post_separate);
$NewLenSource = strlen(tmpSource) - ( $post_separate +1);
$tmpYear = substr( tmpSource , $post_separate+1, $NewLenSource);
อาจจะช่วยได้บ้าง ถ้าจะให้ดีลองปรับเป็น Function นะฮะ
แต่ ถ้าเป็น ภาษาไทย เช่น 25 เมษายน 2548 ต้องหา symbol ที่เป็น ช่องว่าง " " นะฮะ
|
|
|
|
|
Date :
7 ม.ค. 2548 17:28:46 |
By :
boon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเขียน function convert string to date ได้มั้ยฮะ
concept ง่าย ๆ ต้องหาsymbol ที่ใช้แบ่งระหว่าง date , month and year ex. "/" , " - "
แล้วตัดออกเอาเฉพาะที่เราต้องการ
เช่น
$tmpSoure = trim("1/02/2004") ;
$post_separate = strpos( tmpSource , '/' , 0);
$tmpDate = substr( tmpSource , 0 , $post_separate);
$NewLenSource = strlen(tmpSource) - ( $post_separate +1);
$tmpSource = substr( tmpSource , $post_separate+1, $NewLenSource);
$post_separate = strpos( tmpSource , '/' , 0);
$tmpMonth = substr( tmpSource , 0 , $post_separate);
$NewLenSource = strlen(tmpSource) - ( $post_separate +1);
$tmpYear = substr( tmpSource , $post_separate+1, $NewLenSource);
อาจจะช่วยได้บ้าง ถ้าจะให้ดีลองปรับเป็น Function นะฮะ
แต่ ถ้าเป็น ภาษาไทย เช่น 25 เมษายน 2548 ต้องหา symbol ที่เป็น ช่องว่าง " " นะฮะ
|
|
|
|
|
Date :
7 ม.ค. 2548 17:28:49 |
By :
boon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จ้า ขอบคุณมั๊กๆๆๆๆๆๆ เลยนะคะ
|
|
|
|
|
Date :
7 ม.ค. 2548 19:38:16 |
By :
เดส |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|