compare two table with row and column

Yogasuganya Sukumar
  1. I have two tables table1 and table2
  2. In table1 fieldname is cert_no and in table2 fieldname is cer1,cert2,cert3,cert4,cert5
  3. The value which was not in table2 (cer1,cert2,cert3,cert4,cert5) alone want to display
  4. If both table has same value only transfile_file want to display
   SELECT * 
     FROM table1 
    WHERE folio = '123456' 
      AND cm_flag !='X' 
      AND certificate_no NOT IN
          (SELECT CONCAT(certno1,certno2,certno3,certno4,certno5,certno6,certno7,certno8,certno9,certno10) 
             FROM table2 
            WHERE tofolio = '123456'
          )
Bilal Ahmed Mazhar

Try:

SELECT * FROM table1 WHERE folio = '123456' AND cm_flag !='X' AND certificate_no NOT IN (SELECT CONCAT(certno1,',',certno2,',',certno3,',',certno4,',',certno5,',',certno6,',',certno7,',',certno8,',',certno9,',',certno10) FROM table2 WHERE tofolio = '123456')

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Compare a column with different row and column in sample table using Oracle 11g

From Dev

Compare row by row among two column ranges

From Dev

SQL Query to compare two most recently modified row of the same table

From Dev

Compare result of two table functions using one column from each

From Dev

How do I compare values from different column and different row but same table?

From Dev

Compare two table and adding row based on condition

From Dev

Bootstrap table - split one of the row's column in two

From Dev

Compare row values of a table with column values of another table and if true say true or false

From Dev

query for join two column and get one row per left with column that have array of right table refrenced to left table row

From Dev

Compare two values in a row

From Dev

Two table compare and list php

From Dev

Query table and compare to another row

From Dev

Two-dimensional table with row/column highlighting

From Dev

Transform row in column in a table

From Dev

Compare two columns on one table row by row

From Dev

Unable Compare the values of two columns of two tables and returning the best row if it is in the first table

From Dev

How to compare row with a column?

From Dev

compare single column of two files

From Dev

How to compare two different row of a table in Mysql

From Dev

How do I compare values from different column and different row but same table?

From Dev

Compare two table and adding row based on condition

From Dev

Compare two consecutive row data in a table in MySQL

From Dev

compare two files column values

From Dev

Compare first and second column of two files and print the row from second file if there is a match

From Dev

Jquery select two columns in a table and compare TD values row by row

From Dev

SQL Query to compare two columns with one column from another table (and get two values)

From Dev

Compare a column with multiple row to a colum with a single row

From Dev

Compare two rows in a table in PowerBI

From Dev

Tempory column with increment number of row of union of two table

Related Related

  1. 1

    Compare a column with different row and column in sample table using Oracle 11g

  2. 2

    Compare row by row among two column ranges

  3. 3

    SQL Query to compare two most recently modified row of the same table

  4. 4

    Compare result of two table functions using one column from each

  5. 5

    How do I compare values from different column and different row but same table?

  6. 6

    Compare two table and adding row based on condition

  7. 7

    Bootstrap table - split one of the row's column in two

  8. 8

    Compare row values of a table with column values of another table and if true say true or false

  9. 9

    query for join two column and get one row per left with column that have array of right table refrenced to left table row

  10. 10

    Compare two values in a row

  11. 11

    Two table compare and list php

  12. 12

    Query table and compare to another row

  13. 13

    Two-dimensional table with row/column highlighting

  14. 14

    Transform row in column in a table

  15. 15

    Compare two columns on one table row by row

  16. 16

    Unable Compare the values of two columns of two tables and returning the best row if it is in the first table

  17. 17

    How to compare row with a column?

  18. 18

    compare single column of two files

  19. 19

    How to compare two different row of a table in Mysql

  20. 20

    How do I compare values from different column and different row but same table?

  21. 21

    Compare two table and adding row based on condition

  22. 22

    Compare two consecutive row data in a table in MySQL

  23. 23

    compare two files column values

  24. 24

    Compare first and second column of two files and print the row from second file if there is a match

  25. 25

    Jquery select two columns in a table and compare TD values row by row

  26. 26

    SQL Query to compare two columns with one column from another table (and get two values)

  27. 27

    Compare a column with multiple row to a colum with a single row

  28. 28

    Compare two rows in a table in PowerBI

  29. 29

    Tempory column with increment number of row of union of two table

HotTag

Archive