I want to convert a formula from Excel to a query SQL: I want to find every line in a table that has a column B calculated with a formula in Excel.
table X has 2 columns: Column A and Column B The formula to calculate Column B in Excel using Column A is like this :
Column B = CONCATENER("FR";(TEXTE((MOD((12 + 3*MOD((Column A);97));97));"00"));TEXTE(Column A;"000000000")))
So basically, the query in excel will be like this:
Select * from X where Column B = **Query SQL using the Excel Formula** (Column A)