千峰第41天作業

2021-10-23 01:22:12 字數 1549 閱讀 4715

在千峰學習的第41天,

「做自己需要的自己」

中國加油!武漢加油!千峰加油!我自己加油!

1、查詢所有使用者訂單

select orders.userid,username,oid,totalprice from orders inner join user on orders.userid=user.userid;

查詢使用者id為1的所有訂單

select distinct orders.userid,username,oid,totalprice from orders inner join user on orders.userid=user.useridwhere user.userid=1;

2、檢視使用者為張三的訂單

select *from orders where userid in

(select userid from user where username=『張三』);

查詢出訂單的**大於800的所有使用者資訊

select *from user where userid in (

select distinct userid from orders where totalprice>800

);3、

select *from orders limit 0,5;

4、使用者表

public

class

jdbc

public

static

void

check

(int result)

else

}}

分類表

public

class

category

public

static

void

check

(int result)

else

}}

商品表

public

class

products

public

static

void

check

(int result)

else

}}

訂單表

public

class

orders

public

static

void

check

(int result)

else

}}

訂單項表

public

class

orderitem

public

static

void

check

(int result)

else

}}

千鋒逆戰班第41天

1 查詢所有使用者的訂單 select o.userid username,oid,totalprice from user as u inner join orders as o on u.userid o.userid 2 查詢使用者id為 1 的所有訂單詳情 select o.userid u...

在千峰「逆戰」學習的第16天

今天覆習了session和cookie的特徵,以及session和cookie的區別。繼續加油!奧利給!人生重要的不是所站的位置,而是所朝的方向 中國加油!武漢加油!千鋒加油!我自己加油 cookie的特徵 a.cookie是儲存在瀏覽器本地 b.cookie是乙個鍵值對資料,儲存的資料型別都是字串...

在千峰「逆戰」學習的第17天

今天學習了自定義檔案上傳,jquery的入門案例以及基本 層次和過濾選擇器。繼續加油!奧利給!人生重要的不是所站的位置,而是所朝的方向 中國加油!武漢加油!千鋒加油!我自己加油 jquery是什麼?jquery是乙個js的類庫檔案 01 jquery入門 jquery是什麼?jquery是乙個js的...