--要查詢以某個字結尾等於什麼的記錄
--select * from vehicle;
--車牌號以7結尾的資料記錄:
select * from vehicle t where trim(t.veh_no) like '%7';
--用函式的方式
select * from vehicle t where substr(trim(t.veh_no),-1,1) = '7'
select * from vehicle t where trim(t.veh_no) like '%9r%';
----用函式的方式indexof()
select * from vehicle t where instr(trim(t.veh_no),'9r')>0;
--%,百分號任意匹配,_單一匹配
--查詢員工姓和名字數相等的員工
select *
from employees
where length(first_name)=length(last_name);
--查詢last_name以s結尾的員工(不用like)
select *
from employees
where substr(last_name,-1)='s';
--查詢所有的員工姓和名,輸出以下格式s.king
select substr(first_name,1,1)||'.'||last_name
from employees;
--查詢所有的**號碼,把分隔符「點」換為「-」之後再輸出
select replace(phone_number,'.','-')
from employees;
--使用者輸入乙個任意編號,查詢此編號的員工
select *
from emp
where empno=&input;
--使用者輸入乙個關鍵字,查詢last_name包含此關鍵字的員工(不用like)
select *
from emp
where instr(ename,'&input')>0;
C 建構函式 例子
建構函式,去掉this class person public person string name,string int age,double weight public void eatfood double quanity class program age weight firstman.n...
C 建構函式例子
已知string類定義如下 class string public string constchar str null 通用建構函式 string conststring another 拷貝建構函式 string 析構函式 string operater const string rhs 賦值函式...
matlab SVM新函式例子
matlab 介紹svm新函式時有這樣乙個例子 load fisher s iris data set.remove the sepal lengths and widths,and all observed setosa irises.程式 load fisheriris 我看了一下,fisher...