3.5.6 Pattern Matching4

3.5.6 পেটাৰ্ণ মিলা

The Like predicate allows the comparison of one string value with another string value. It used two wildcards charcters;

লাইক প্ৰেডিকেটে এটা স্ট্ৰিং মানৰ সৈতে আন এটা স্ট্ৰিং মানৰ তুলনা কৰিব দিয়ে। ইয়াত দুটা ৱাইল্ডকাৰ্ড চাৰ্ক্টাৰ ব্যৱহাৰ কৰা হৈছিল;

% (percentage sign) It allows finding a match for any string of any length, including zero length.

% (শতাংশ চিহ্ন) ই যিকোনো দৈৰ্ঘ্যৰ যিকোনো স্ট্ৰিংৰ বাবে মিল বিচাৰিবলৈ অনুমতি দিয়ে, যাৰ ভিতৰত আছে শূন্য দৈৰ্ঘ্য।

– (undersord sing) It allows finding a match for any single character.

(আণ্ডাৰচৰ্ড গান) ই যিকোনো এটা চৰিত্ৰৰ বাবে মিল বিচাৰিবলৈ অনুমতি দিয়ে।

The query:

প্ৰশ্ন:

SELECT FROM <Table Name> WHERT <Column Name ‘A%’;

<তালিকাৰ নাম> পৰা বাছনি কৰক <স্তম্ভনাম ‘A%’;

displays all the rows having Column name starting with ‘A’:

‘এ’ৰ পৰা আৰম্ভ কৰি স্তম্ভ নাম থকা সকলো শাৰী প্ৰদৰ্শন কৰে:\