Community
Articles
Topics
Q&A
Learn
Course
Programming Dictionary
Tools Library
Development tools
Website Source Code
PHP Libraries
JS special effects
Website Materials
Extension plug-ins
Leisure
Game Download
Game Tutorials
Log in
English
简体中文
zh-cn
English
en
繁体中文
zh-tw
日本語
ja
한국어
ko
Melayu
ms
Français
fr
Deutsch
de
首页
>
课程
>
SQL Fun Class
>
Training in this section
Training in this section
目录列表
SQL Fun Class
Basic concepts of database
Database introductio...
DatabaseSELECT
Database SQL syntax ...
Database select mult...
DISTINCT and LIMIT
Database sorting res...
Basic database conce...
Database operators, functions, subqueries
WHERE statement
AND, OR operators
IN, NOT IN operator
Custom columns
Database functions
Database subquery
LIKE and MIN
Training in this sec...
Database connection, table operations
table join
Connection Type
UNION operator
INSERT statement
UPDATE and DELETE st...
CREATE TABLE
NOT NULL 和 AUTO_INCR...
ALTER, DROP, RENAME ...
SQL view
Training in this sec...
Database comprehensive training
Comprehensive traini...
Comprehensive traini...
从下面的选项中选择填写,创建表`people` ,其中`list`的类型为varchar。
CREATE
people(
name varchar(20) NOT NULL,
list
(10),
age int
)
从下面的选项中选择填写,将数据项插入 "people" 表中。
people
('John Smith', '1', 36);
1
/2
继续
正确
错误