資料是,學習程式設計的基本操作,以下為大家介紹一下mysql如何建立資料庫。
推薦教學:MySQL入門影片教學
#前提:電腦安裝了mysql服務。如果不知道怎麼安裝mysql服務,可以參考https://www.php.cn/mysql-tutorials-362227.html
1、登入資料庫
程式碼:
mysql -u root -p
輸入密碼
#2、建立資料庫
程式碼:
create database test;
3、使用剛才建立的資料庫
4、建立一張表格
程式碼:
use test;
#5、在表格裡新增一條資料
create table user(id int not null,username varchar(100) not null,password varchar(100) not null,primary key(id));
6、查詢資料
#程式碼:
insert into user(id,username,password) values(1,'zhang','123');
以上是如何建立資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!