⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 9.test

📁 《嵌入式Linux应用开发详解》中的源代码
💻 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -