From the following table, write a SQL query to find those rows where col1 contains the string ( _/ ). Return col1
- برمجة سي كيو ال sql
- 2021-08-31
- mhanasmh00489829403
الأجوبة
SELECT *
FROM testtable
WHERE col1 LIKE '%/_//%' ESCAPE '/';
Output of the Query:
col1 A001/DJ-402\44_/100/2015 A001_\DJ-402\44_/100/2015
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال