Database
Search...
Ctrl
K
Chapter1: MySQL
1.2.MySQL for Beginners
1.2.2.Beginning with MySQL Basics
1.2.2.1.Creating a Database - CREATE DATABASE
Previous
1.2.2.Beginning with MySQL Basics
Next
1.2.2.2.Creating a Table - CREATE TABLE
Last updated
5 years ago
Was this helpful?
建立資料庫
Copy
create database StudentsDB;
使用資料庫
Copy
use StudentsDB;