问题
I have a sql table which contains 2 columns:
How to calculate the frequency of the highest amplitude wave ? (Each wave is of fixed frequency). Thank you
回答1:
Try this
select 1/Time as frequency from <table> order by amplitude desc limit 1
来源:https://stackoverflow.com/questions/32948673/frequency-amplitue