4771
410
Loading version...
🔄 Update App
🔍 Check for Updates
Test Notification
🔔 Enable Notifications
📰 Fetch NHK News
🚀 Fetch TechCrunch News
🧪 Experiment
📰 Article Management
📚 Reading List
🎤 Speaking List
📊 Statistics
💻 Software Statistics
Push Admin
Edit Reading
Back to List
Basic Information
Title
Please enter a title.
URL
Please enter a valid URL.
Date
カテゴリID
画像ファイル名
統計情報
単語数:
244語
読了回数:
0回
作成日:
2022/01/06 20:14
更新日:
2025/12/09 18:20
本文
本文
Structured Query Language (SQL) is a language used to view or change data in databases. The statements used in this language are called SQL queries. Basic use of SQL queries is, to: INSERT data INTO a database, DELETE data FROM a database, UPDATE data in a database, SELECT (extract) data FROM a database. Examples Edit This is a simple SQL Query which is used to show all values stored in column named 'my_column' from the data table named 'my_table'. SELECT my_column FROM my_table; Here is an example of inserting new information into a table called 'people.' The query first specifies the table as 'people', then the columns in which data is going to be inserted into, and the data that is going into these columns. As a result, data will be added into the columns in the same order the column names are listed in the first brackets: (first_name, last_name, age, favorite_food). INSERT INTO people (first_name, last_name, age, favorite_food) VALUES ("Bob", "Page", "42", "Hamburgers"); In the example below the columns aren't listed. This would result in an attempt to add the data into the table in the order the values are listed. INSERT INTO people VALUES ("Bob", "Page", "42", "Hamburgers"); Doing the above (without naming the columns) might result in inputting the data in an incorrect column or the statement might not run correctly - when the value types are mismatched (for example trying to input a word into a column storing only numbers).
本文を入力してください。
メモ
メモ・感想
キャンセル
更新
Debug Info:
Saved State:
-
Redirected Flag:
-
Current URL:
-
Refresh
Close
Debug
Send Report
Send Report
Draw Arrow
Clear
Message:
Cancel
Send