2021年12月4日 星期六

【Appsheet教學】如何使用Behavior設定門診號碼增加減少

 在Appsheet中您可以增加Behavior來做特定指令,例如號碼增加減少,設定好在查看模式時,自動就會在上方顯示您設好的動作指令。



Action Name:號碼增加

Do this:Data: Set the values of some columns in this row

Set these columns:目前叫號=[目前叫號]+1

Set these columns:更新時間=now()


Action Name:號碼減少

Do this:Data: Set the values of some columns in this row

Set these columns:目前叫號=[目前叫號]-1

Set these columns:更新時間=now()


Action Name:重設號碼

Do this:Data: Set the values of some columns in this row

Set these columns:目前叫號=0

Set these columns:更新時間=now()


Needs confirmation? Yes

Confirmation Message: 您確認要重設嗎?

Display name:可以再設定顯示名稱



沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。

[教學] MySQL 如何匯入大型 SQL 資料檔?利用 EmEditor 分割檔案與 phpMyAdmin 匯入實戰

在網站維運的過程中,資料庫的備份與還原是家常便飯。但當資料庫成長到一定規模時,單純的匯出匯入就可能變成一場惡夢。這次,我們將分享一個處理大型 MySQL 資料庫(超過 1GB)的實戰經驗,特別是在有資源限制的虛擬主機環境(如 GoDaddy)中,如何巧妙地完成匯入工作。 前言:我...