निम्नलिखित वाक्य रचना है -
select yourColumnName1, yourColumnName2, yourColumnName3, . . . N from yourTableName where yourValue in(yourColumnName1,yourColumnName2) or yourColumnName1 is NULL;
आइए एक टेबल बनाएं -
mysql> create table demo60 −> ( −> id int not null auto_increment primary key, −> first_name varchar(20), −> last_name varchar(20) −> ) −> ; Query OK, 0 rows affected (2.11 sec)
इंसर्ट कमांड की मदद से टेबल में कुछ रिकॉर्ड डालें -
mysql> insert into demo60(first_name,last_name) values('John','Smith'); Query OK, 1 row affected (0.09 sec) mysql> insert into demo60(first_name,last_name) values('John','Doe'); Query OK, 1 row affected (0.51 sec) mysql> insert into demo60(first_name,last_name) values(null,'Brown'); Query OK, 1 row affected (0.09 sec) mysql> insert into demo60(first_name,last_name) values('David','Miller'); Query OK, 1 row affected (0.16 sec) mysql> insert into demo60(first_name,last_name) values('David','Smith'); Query OK, 1 row affected (0.11 sec) mysql> insert into demo60(first_name,last_name) values('Chris','Brown'); Query OK, 1 row affected (0.12 sec)
चयन कथन का उपयोग करके तालिका से रिकॉर्ड प्रदर्शित करें -
mysql> select *from demo60;
यह निम्नलिखित आउटपुट देगा -
+----+------------+-----------+ | id | first_name | last_name | +----+------------+-----------+ | 1 | John | Smith | | 2 | John | Doe | | 3 | NULL | Brown | | 4 | David | Miller | | 5 | David | Smith | | 6 | Chris | Brown | +----+------------+-----------+ 6 rows in set (0.00 sec)
न्यूल के साथ कहां का चयन करने के लिए क्वेरी निम्नलिखित है -
Mysql> select −> id, −> first_name, −> last_name −> from demo60 −> where 'John' in(first_name,last_name) or first_name is NULL;
यह निम्नलिखित आउटपुट देगा -
+----+------------+-----------+ | id | first_name | last_name | +----+------------+-----------+ | 1 | John | Smith | | 2 | John | Doe | | 3 | NULL | Brown | +----+------------+-----------+ 3 rows in set (0.00 sec)