セクション 5. 章 3
single
Challenge: Updating Page Counts
メニューを表示するにはスワイプしてください
The library discovered that some books in their database have incorrect page counts due to a data entry error. Specifically, for books published before the year 2000, the page count was mistakenly recorded 10 pages fewer than the actual number of pages.
タスク
スワイプしてコーディングを開始
Your task is to fix this error by updating the pages column in the books table. Increase the page count by 10 for all books where published before the year 2000.
You can reference a column value in an UPDATE statement like this:
UPDATE table_name
SET column_name = column_name + value
WHERE condition;
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 5. 章 3
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください