chevron_left
Sample tables
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
auto_stories new
settings
Sample table: pupil
Database
chevron_rightMySQL
chevron_rightCookbooks
chevron_rightSample tables
schedule Aug 12, 2022
Last updated local_offer MySQL
Tags tocTable of Contents
expand_more Check out the interactive map of data science
Refer to the code below for generating the pupil
sample table:
CREATE TABLE pupil ( id INT UNSIGNED AUTO_INCREMENT, name VARCHAR(30), PRIMARY KEY (id));
INSERT INTO pupil (name) VALUES ('axel'), ('bob'), ('cathy');
SELECT * FROM pupil;
+----+-------+| id | name |+----+-------+| 1 | axel || 2 | bob || 3 | cathy |+----+-------+
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!