?? 9.test
字號:
# Function handlingselect first_name, length(first_name) 'Name Length' from staff \p\gselect first_name, upper(first_name) from staff \p\gselect first_name, lower(first_name) from staff \p\gselect first_name, chop(first_name) 'Chopped Name' from staff \p\gselect first_name, replace(first_name, 'avi', 'iva') from staff \p\gselect first_name, substr(first_name, 2, 2) from staff \p\gselect first_name, translate(first_name, 'A-D', 'a-d') from staff \p\gselect first_name, soundex(first_name) 'Soundex Value' from staff \p\gselect first_name, abs(10) 'Absolute Value' from staff \p\gselect first_name, abs(-7) 'Absolute Value' from staff \p\gselect first_name, staff_id, abs(staff_id) 'Absolute StaffID' from staff \p\gselect first_name, height, ceil(height) from staff \p\gselect first_name, height, floor(height) from staff \p\gselect first_name, staff_id, mod(staff_id, 3) from staff \p\gselect first_name, staff_id, sign(staff_id) from staff \p\gselect first_name, staff_id, power(staff_id, 2) from staff \p\gselect first_name, last_name, staff_id into tmp_staff from staff \p\gselect * from tmp_staff\p\g
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -