From the following table, write a SQL query to find those rows where col1 does not contain the string ( _/ )
- برمجة سي كيو ال sql
- 2021-08-31
- mhanasmh00489829403
الأجوبة
SELECT *
FROM testtable
WHERE col1 NOT LIKE '%/_//%' ESCAPE '/';
Output of the Query:
col1 A001_DJ-402-2014-2015 A002_DJ-401-2014-2015 A001/DJ_401 A001/DJ_402\44 A001/DJ_402\44\2015 A001/DJ-402%45\2015/200 A001/DJ_402\45\2015%100 A001/DJ_402%45\2015/300 A001/DJ-402\44
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال