Preview:
-- 1. البحث عن عملاء يبدأ اسمهم بحرف 'M' ويليه حرفان فقط (إجمالي 3 حروف مثل Max, May)
SELECT * FROM Customers 
WHERE FirstName LIKE 'M__';

-- 2. البحث عن منتجات كودها يبدأ بـ 'A' وينتهي بـ 'Z' وبينهما 3 أرقام أو حروف
SELECT * FROM Products 
WHERE ProductCode LIKE 'A___Z';
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter