千鋒逆戰班第41天

2021-10-23 01:26:18 字數 1762 閱讀 6464

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`, username,oid,totalprice from user as u

inner join orders as o

on u.`userid` = o.`userid` and u.`userid`=

1;

1>檢視使用者為張三的訂單

select * from orders

where userid in

(select userid from user where username=

'張三'

)

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

select *from user where userid in (

select distinct userid from orders where totalprice>

800)

;

15.3 綜合練習3-【分頁查詢】

select *from orders limit 0,5

;

15.4 綜合練習4-【使用jdbc實現對每張表的增、刪、改】

使用者表:

public

class

usertable

//檢查操作是否成功

public

static

void

check

(int result)

else

}}

分類表:

public

class

categorytable

//檢查操作是否成功

public

static

void

check

(int result)

else

}}

商品表:

public

class

productstable

//檢查操作是否成功

public

static

void

check

(int result)

else

}}

訂單表

public

class

orderstable

//檢查操作是否成功

public

static

void

check

(int result)

else

}}

訂單項表

public

class

orderitemtable

//檢查操作是否成功

public

static

void

check

(int result)

else

}}

千鋒逆戰班,第29天

在千鋒 逆戰 學習第29天 改變世界的第一件事就是改變自己,改變自己的最好時機就是現在 i.mythread1沒有繼承thread類所以其中沒有sleep方法應該改為 public void run catch interruptedexception e system.out.println he...

千鋒逆戰班第33天

1.tcp和udp都是傳輸層協議,tcp 有鏈結 有連線i無連線 的協議,udp 無連線 有連線 無連線 的協議。這兩種協議中,tcp 協議更安全,而且 udp 協議傳輸效率更高。2.有以下 abc socket s new socket 192.168.0.100 9000 以下說法正確的是 a....

千鋒逆戰班,陳強 在千鋒「逆戰」學習第 22天

string字串的常用方法 1.tostring 返回物件本身 2.substring 陣列的下標 返回乙個新的字串,它是此字串的乙個子字串。從括號定義的下標開始 3.touppercase 將字串中的字母全部變成大寫 4.tolawercase 將字串中的字母全部變成小寫 5.trim 去掉字串前...