Here you can find the list of performance tips for Firebird database in different areas – from hardware/OS and Firebird configuration tuning to SQL optimization recommendations.
Tag: database
How to find equals record in db table
[code language=”sql”]
select field1, field2 from mytable group by field1, field2 having count(*)>1
[/code]