站内搜索: 请输入搜索关键词
当前页面: 图书首页 > MySQL Tutorial

MySQL Tutorial

[ Directory ] Previous Section Next Section

Selecting a Database

Before we can create any tables or do anything else with the employee database, we need to tell MySQL that we want to work with our new database. We do this with the use statement, as follows:


use employee;

The employee database is now selected, and all actions we take from now on will be applied to this database by default.

    [ Directory ] Previous Section Next Section