小程式雲開發筆記 資料庫的增刪改查 (查)

2021-10-21 00:27:50 字數 845 閱讀 4526

wx.cloud.

init

()

(自建)workbase.js

傳統寫法:

onload()

,fail

(err)})

}

res:(沒有資料的原因:許可權問題)

更改為所有使用者可讀:

es6的簡潔寫法:

//es6的簡潔寫法

wx.cloud.

database()

.collection

('works').

get().

then

(res=>).

catch

(err=>

)}

onload()

).get().

then

(res=>)}

).catch

(err=>

)}

//使用doc查詢單條資料

wx.cloud.

database()

.collection

('works').

doc(

'28ee4e3e6040593808c177b16a67ed0e').

get().

then

(res=>)}

).catch

(err=>

)

開發筆記(資料庫相關)

1 如何查詢乙個沒有主鍵的表的第n行資料 假設第n條資料 select top n identity int tempid,into temptb from tablename select from temptb where tempid n 為了降低大表的查詢時間,我選擇了選擇top n為止,然...

測試開發筆記 資料庫

一 為什麼要學習資料庫 1 為了方便查詢資料 2 為了持久化儲存資料 二 資料庫的相關概念 dbms db sql db 資料庫,儲存資料的容器 dbms 資料庫管理系統或者資料庫管理產品 常見的資料庫管理系統 mysql oracal db2 sql server sql 結構化查詢語句 三 資料...

測試開發筆記 資料庫

mysql前端筆記 二 常見約束補充 1 主鍵自增 auto increment 通過auto increment設定主鍵自增 特點 和主鍵結合使用,自增字段的資料型別是整數型別 自增的資料開始值是1,沒增加一行資料,自增1 新增自增 create table tb dept10 id int 11...