Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL ऑपरेटर चुनें कि समान पंक्तियों से एक सटीक पंक्ति परिणाम कैसे प्राप्त करें?

create table stuff
(   id int auto_increment primary key,
    seo varchar(100) not null
    -- unique key (seo) not a bad idea
);

insert stuff (seo) values ('abc'),('abc7'),('kitty likes abc'),('abc and more abc'),('kittens');
insert stuff (seo) values ('abc at beginning'),('frogs'),('and at the end abc'),('qwertyabcqwerty');


select id from stuff where seo='abc';
+----+
| id |
+----+
|  1 |
+----+
1 row in set (0.02 sec)

यहां बताया गया है कि कैसे like व्यवहार करता है:

select * from stuff where seo like '%abc';
+----+--------------------+
| id | seo                |
+----+--------------------+
|  1 | abc                |
|  3 | kitty likes abc    |
|  4 | abc and more abc   |
|  8 | and at the end abc |
+----+--------------------+
4 rows in set (0.00 sec)

select * from stuff where seo like 'abc%';
+----+------------------+
| id | seo              |
+----+------------------+
|  1 | abc              |
|  2 | abc7             |
|  4 | abc and more abc |
|  6 | abc at beginning |
+----+------------------+
4 rows in set (0.00 sec)

select id,seo from stuff where seo like '%abc%';
+----+--------------------+
| id | seo                |
+----+--------------------+
|  1 | abc                |
|  2 | abc7               |
|  3 | kitty likes abc    |
|  4 | abc and more abc   |
|  6 | abc at beginning   |
|  8 | and at the end abc |
|  9 | qwertyabcqwerty    |
+----+--------------------+
7 rows in set (0.00 sec)


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एंड्रॉइड:जेसन MySQL डेटाबेस से किसी भी फाइल को पुनः प्राप्त करने में सक्षम नहीं है, यह खाली है

  2. मैं हाइबरनेट के लिए कुंजी नामक कॉलम नाम में बैकटिक्स कैसे डालूं?

  3. पीडीओ को mysql_query और तैयार बयान

  4. ग्रुप बाय डुप्लीकेट नहीं हटाता

  5. MySQL में NULL को किसी भिन्न मान से बदलने के 4 तरीके