1.2.3.4.Using LIKE and WILDCARDS
查詢字串中含有某關鍵字的資料
%: 可以表示多個未知字元
select * from StudentsDetails where firstname like 'student%';
_: 可以表示一個未知字元
select * from StudentsDetails where firstname like 'student_';
Previous1.2.3.3.Selecting Data which has one of Multitple Values - INNext1.2.3.5.Copy Table with INSERT INTO SELECT
Last updated
Was this helpful?