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
English
简体中文
English
繁体中文
日本語
한국어
Melayu
Français
Deutsch
Login
singup
首页
>
课程
>
SQL Fun Class
>
Basic database concepts section training
Basic database concepts section training
目录列表
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...
以下关于数据库的叙述正确的是?
一个数据库通常包含一个或多个表
一个数据库只能包含一个表
一个数据库只能包含行
一个数据库只能包含列
在下面的选项中,填写列出表名。
TABLES;
以下关于主键的叙述正确的有哪些?
主键列不能包含 NULL 值。
主键必须包含唯一的值。
每个表只能有一个主键。
每个表可以有一个或多个主键。
在下面的选项中,填写从 "students" 表中选择不同的名称,然后按 "name" 列排序。
SELECT
name
students
name;
1
/4
继续
正确
错误