hello
i am making a query that shows all records which have the same text value in two fields. What criteria do i need to use for this?
Thanks
joeldamole.![]()
hello
i am making a query that shows all records which have the same text value in two fields. What criteria do i need to use for this?
Thanks
joeldamole.![]()
Something like this:
or change the where clause to:Code:select a.* from Table1 as a where a.Field1 ='Text' and a.Field2 ='Text'
where a.Field1 = a.Field2