I am using PHP 4.02 and MSSQL Server 7.0
///////////////I have this array/////////
AA0101
AA0202
AA0303
AA0404
AA0505
AA0606
AA0707
AA0808
AA0909
AA1010
////////////////I have this table////////
document_number id
AA0101 1
AA0202 2
AA0303 3
AA0404 4
AA0505 5
AA0606 6
AA0707 7
AA0808 8
AA0909 9
AA1010 10
AA1111 11
AA1212 12
AA1313 13
AA1414 14
AA1515 15
AA1616 16
AA1717 17
AA1818 18
AA1919 19
AA2020 20
//////////////////I want to build a query that will out put a result of all the records that are NOT LIKE the array values.
///////////Example I want the result to be:///
AA1111 11
AA1212 12
AA1313 13
AA1414 14
AA1515 15
AA1616 16
AA1717 17
AA1818 18
AA1919 19
AA2020 20
How do I do this?
Thanks
///////////////I have this array/////////
AA0101
AA0202
AA0303
AA0404
AA0505
AA0606
AA0707
AA0808
AA0909
AA1010
////////////////I have this table////////
document_number id
AA0101 1
AA0202 2
AA0303 3
AA0404 4
AA0505 5
AA0606 6
AA0707 7
AA0808 8
AA0909 9
AA1010 10
AA1111 11
AA1212 12
AA1313 13
AA1414 14
AA1515 15
AA1616 16
AA1717 17
AA1818 18
AA1919 19
AA2020 20
//////////////////I want to build a query that will out put a result of all the records that are NOT LIKE the array values.
///////////Example I want the result to be:///
AA1111 11
AA1212 12
AA1313 13
AA1414 14
AA1515 15
AA1616 16
AA1717 17
AA1818 18
AA1919 19
AA2020 20
How do I do this?
Thanks