56
データ操作
Data Operations (SQL)
ဒေတာ လုပ်ဆောင်ချက်များ (SQL)
🇯🇵 日本語
- SQL:関係データベースを操作する標準言語
- 主要な命令:SELECT(検索)・INSERT(追加)・UPDATE(更新)・DELETE(削除)
- WHERE(条件)・ORDER BY(並替)・GROUP BY(集計)・JOIN(表結合)
🇬🇧 English
SQL is the language you use to ask questions of a database. You don't need to be a programmer to read basic SQL.
SELECT name FROM students WHERE grade = 5;— "Give me the name of all students in grade 5."SELECT * FROM students ORDER BY name;— "Give me all students, sorted alphabetically."- JOIN — combine data from two tables. E.g. get student names AND their course names by joining the students and enrollments tables.
🇲🇲 မြန်မာ
SQL သည် ဒေတာဘေ့စ်ကို မေးခွန်းမေးရာတွင် သုံးသောဘာသာရပ်ဖြစ်သည်。
SELECT name FROM students WHERE grade = 5;— "တန်း ၅ ကျောင်းသားများ၏ နာမည်ပေးပါ"。- JOIN — ဇယားနှစ်ခုမှ ဒေတာပေါင်းသည်。ဥပမာ — ကျောင်းသားနာမည်နှင့် ၎င်းတို့ တက်ရောက်သောဘာသာရပ်နာမည် တစ်ပြိုင်နက် ရနိုင်ရန် students ဇယားနှင့် enrollments ဇယား join ဖြစ်သည်。
Keywords
SQLSELECTWHEREJOINGROUP BYORDER BYINSERTDELETE
Related Practice Questions
ဆက်စပ် လေ့ကျင့်ခန်းမေးခွန်းများ
See all IP questions →