এর জন্য, FIND_IN_SET().
ব্যবহার করুনআসুন একটি টেবিল তৈরি করি -
উদাহরণ
mysql> create table demo81 -> ( -> id int not null auto_increment primary key, -> username varchar(200) -> ); Query OK, 0 rows affected (1.44
সন্নিবেশ কমান্ডের সাহায্যে টেবিলে কিছু রেকর্ড সন্নিবেশ করুন -
উদাহরণ
mysql> insert into demo81(username) values('John,Chris,David'); Query OK, 1 row affected (0.11 mysql> insert into demo81(username) values('Mike,Sam'); Query OK, 1 row affected (0.14 mysql> insert into demo81(username) values('Chris,Bob,Sam'); Query OK, 1 row affected (0.13 mysql> insert into demo81(username) values('Mike,John,Chris'); Query OK, 1 row affected (0.23
সিলেক্ট স্টেটমেন্ট -
ব্যবহার করে টেবিল থেকে রেকর্ড প্রদর্শন করুনউদাহরণ
mysql> select *from demo81;
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেআউটপুট
+----+------------------+
| id | username |+----+------------------+
| 1 | John,Chris,David || 2 | Mike,Sam |
| 3 | Chris,Bob,Sam || 4 | Mike,John,Chris |
+----+------------------+4 rows in set (0.00 sec)
তালিকা স্ট্রিং -
-এ কোথায় মানগুলি নির্বাচন করার জন্য নীচের প্রশ্নটি রয়েছে৷উদাহরণ
mysql> select *from demo81 where find_in_set('Chris',username) > 0;
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেআউটপুট
+----+------------------+
| id | username |+----+------------------+
| 1 | John,Chris,David || 3 | Chris,Bob,Sam |
| 4 | Mike,John,Chris |+----+------------------+
3 rows in set (0.03 sec)