SQL ကျူတိုရီရယ်

SQL ပင်မစာမျက်နှာ SQL မိတ်ဆက် SQL Syntax SQL ကို ရွေးပါ။ SQL Distinct ကို ရွေးချယ်ပါ။ SQL ဘယ်မှာလဲ။ SQL And, Or, Not SQL Order By SQL Insert Into SQL Null တန်ဖိုးများ SQL အပ်ဒိတ် SQL ကိုဖျက်ပါ။ SQL သည် Top ကိုရွေးချယ်ပါ။ SQL Min နှင့် Max SQL အရေအတွက်၊ Avg၊ အစု SQL ကြိုက်တယ်။ SQL သင်္ကေတများ SQL In SQL အကြား SQL နာမည်များ SQL ချိတ်ဆက်မှု SQL Inner Join SQL Left Join SQL Right Join SQL အပြည့်အစုံ Join SQL Self Join SQL Union SQL Group By SQL ရှိခြင်း။ SQL ရှိတယ်။ SQL Any, All SQL Into ကိုရွေးချယ်ပါ။ SQL Insert Into Select လုပ်ပါ။ SQL Case SQL Null လုပ်ဆောင်ချက်များ SQL Stored လုပ်ထုံးလုပ်နည်းများ SQL မှတ်ချက်များ SQL အော်ပရေတာများ

SQL ဒေတာဘေ့စ်

SQL သည် DB ကိုဖန်တီးပါ။ SQL Drop DB SQL Backup DB SQL ဇယားဖန်တီးပါ။ SQL Drop Table SQL Alter Table SQL ကန့်သတ်ချက်များ SQL သည် Null မဟုတ်ပေ။ SQL သီးသန့် SQL Primary Key SQL Foreign Key SQL စစ်ဆေးခြင်း။ SQL မူရင်း SQL အညွှန်း SQL အလိုအလျောက်တိုး SQL ရက်စွဲများ SQL မြင်ကွင်းများ SQL Injection SQL Hosting SQL Data အမျိုးအစားများ

SQL ကိုးကားချက်များ

SQL သော့ချက်စာလုံးများ MySQL လုပ်ဆောင်ချက်များ SQL Server လုပ်ဆောင်ချက်များ MS Access Functions SQL အမြန် Ref

SQL နမူနာများ

SQL နမူနာများ SQL Quiz SQL လေ့ကျင့်ခန်းများ SQL လက်မှတ်

MS Access Replace() လုပ်ဆောင်ချက်

❮ MS Access လုပ်ဆောင်ချက်များ

ဥပမာ

string တွင် "i" ကို "a" ဖြင့် အစားထိုးပါ။

SELECT Replace("My name is Willy Wonka", "i", "a") AS ReplaceString;

အဓိပ္ပါယ်နှင့် အသုံးပြုမှု

Replace() လုပ်ဆောင်ချက်သည် စာကြောင်းတစ်ကြောင်းအတွင်း စာကြောင်းခွဲတစ်ခုကို အခြားစာကြောင်းခွဲများ၊ သတ်မှတ်ထားသည့် အကြိမ်အရေအတွက်ဖြင့် အစားထိုးသည်။

အထားအသို

Replace(string1, find, replacement, start, count, compare)

ကန့်သတ်တန်ဖိုးများ

Parameter Description
string1 Required. The original string
find Required. The substring to search for in string1
replacement Required. The substring to replace find in string1
start Optional. The start position in string1 to begin the search. If omitted, start is 1
count Optional. The number of replaces to perform. If omitted, it will replace all occurrences of find with replacement
compare Optional. The type of string comparison.

Possible values:
-1: Use the setting of Option Compare
0: Binary comparison
1: Textual comparison
2: Comparison based on info in your database

နည်းပညာဆိုင်ရာအသေးစိတ်

အလုပ်လုပ်သည်- Access 2000 မှ

❮ MS Access လုပ်ဆောင်ချက်များ