|
|
|
ขอคำชี้แนะเรื่องการ Substring แล้ววน insert ข้อมูลลง Table ด้วยคำสั่ง Sql Statement ค่ะ |
|
|
|
|
|
|
|
รบกวนผู้รู้หน่อยนะค่ะ ต้องการสร้าง Stored Procedure ที่รับข้อมูลเป็น String มาเส้น 1
ดังตัวอย่าง A,B,C,D,E,F ใส่มาที่ Parameter @code แล้วต้องการ แล้วต้องการนำ String @code เนี๊ยะค่ะ มา Substring แล้ว insert ค่าลงใน Table Z ที่ Column Code จะมีแนวทางยังไงค่ะ
@code= A,B,C,D,E,F
Table Z
Code << column
A << recode 1
B << recode 2
C << recode 3
D << recode 4
E << recode 5
F << recode 6
รบกวนผู้รู้ช่วยชี้แนะด้วยนะคะ ขอบพระคุณมากค่ะ ^^
Tag : PHP, Ms SQL Server 2005
|
|
|
|
|
|
Date :
2013-05-08 18:18:48 |
By :
graylady |
View :
745 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
// Example 1
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0]; // piece1
echo $pieces[1]; // piece2
// Example 2
$data = "foo:*:1023:1000::/home/foo:/bin/sh";
list($user, $pass, $uid, $gid, $gecos, $home, $shell) = explode(":", $data);
echo $user; // foo
echo $pass; // *
|
|
|
|
|
Date :
2013-05-08 20:47:09 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|