CREATE - Part II
メニューを表示するにはスワイプしてください
Important Points:
- The general syntax of the INSERT statement is
INSERT INTO table_name (column1, column2, …) VALUES (value1, value2, …); - We can use the
PRIMARY KEYkeyword to convert a column into a primary key; - The
AUTO_INCREMENTkeyword is used to make a column automatically assign incremented values to new rows. This can only be applied to columns that are INT or INT-based data types.
1. Which of the following are correct for creating a table with a primary key which auto increments?
2. What is the correct syntax for inserting new rows into an existing table?
すべて明確でしたか?
フィードバックありがとうございます!
セクション 4. 章 5
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください
セクション 4. 章 5