iT邦幫忙

2023 iThome 鐵人賽

DAY 7
0

XAMPP

https://ithelp.ithome.com.tw/upload/images/20230907/20156989hIR3QRpDSr.png

我們需要開啟XAMPP的MYSQL

https://ithelp.ithome.com.tw/upload/images/20230907/20156989RB2sKy4OW9.png

這時候我們就能透過http://localhost/phpmyadmin/

進入phpMyAdmin,來使用我們的資料庫了

https://ithelp.ithome.com.tw/upload/images/20230907/20156989D6WZWbgpzb.png

點選SQL就能輸入指令了

https://ithelp.ithome.com.tw/upload/images/20230907/20156989hT4onGTJJz.png

當然也別忘了按下執行

新增資料庫

 📌 drop database if exists shop;
    create database shop default character set utf8 collate utf8_general_ci;
    grant all on shop.* to 'staff'@'localhost' identified by 'password';
    use shop;

可以把shop,改成想要的資料庫名稱

新增資料表

 📌  CREATE TABLE `user`
    (
       id int AUTO_INCREMENT PRIMARY KEY,
       uid varchar(255) not null,
       name varchar(255) not null,
       password varchar(255) not null
    );

https://ithelp.ithome.com.tw/upload/images/20230907/201569898pnoLBJFZk.png

新增資料表時,別忘了選擇資料庫

成功畫面

https://ithelp.ithome.com.tw/upload/images/20230907/20156989UoCIAmzw4u.png

這樣就創建成功喽~

程式碼收錄:https://github.com/chyhhwen/shopping-system


上一篇
[DAY6]什麼是資料庫?
下一篇
[DAY8]資料表如何新增刪除?
系列文
從前端到後端,設計出屬於自己的購物網站30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言