Зміст курсу
Introduction to .NET with C#
Introduction to .NET with C#
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 KEY
keyword to convert a column into a primary key; - The
AUTO_INCREMENT
keyword 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.
Дякуємо за ваш відгук!