DECLARE @index int;
SET @index = 0;
WHILE(@index <10)
BEGIN
PRINT @index;
SET @index = @index +1;
END
DECLARE @index int;
SET @index = 0;
WHILE(@index <10)
BEGIN
PRINT @index;
SET @index = @index +1;
END
Select Top(1000) [Event]
[EventDesc]
From Test_Ack
Where PATINDEX('hello%',Event)>0
上述的hello%中表示條件要搜尋的字串
Vue 是一套用於構建用戶界面的漸進式框架。
主要學習內容參考官網連結
-------------------以下為筆記------------------------
代號: v-bind 綁定參數 “href” 為變數 url,等於下面的 app.url
代號@ v-on 監聽事件 “click” 為方法 show(),等於 app.show()
ex:
:vue = "1" ---> v-bind:vue = "1"
@vue = "1" ---> v-on:vue = "1"
object.freeze()阻止響應變更變數 -->可在變數前加上$取代此用法
$前墜的符號 用於區別屬性(有實例屬性功能)
message.split('') 拆分
message.join('') 結合
v-if
;否則v-if
和v-show
效果相同。v-if
是有條件的渲染的,若條件判斷為 true 則渲染;而v-show
則是無條件渲染,但視條件以 inline style css 隱藏。<template>
可用v-if
決定是否出現,但無法使用v-show
。CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1 (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...