[Solved] Find departments E-104 or E-102 in database
Posted: Thu Jun 06, 2024 12:33 pm
I am unable to execute database Query code can any one write me the code to find the department 'E-104' OR 'E-102' in my Data base
User community support forum for Apache OpenOffice, LibreOffice and all the OpenOffice.org derivatives
https://forum.openoffice.org/en/forum/
https://forum.openoffice.org/en/forum/viewtopic.php?t=111603
jerc9024 wrote:
I am unable to execute database Query code can any one write me the code to find the department 'E-104' OR 'E-102' in my Data base
Code: Select all
SELECT
"YourDatabaseTableName".*
FROM "YourDatabaseTableName"
WHERE "YourDatabaseTableName"."YourFieldName" IN ( 'E-104', 'E-102' )