There might be more than 1 wff for a given truth-table, but here's how to find one:
For each row where the wff must evaluate to true, form the sentence P1 ^ P2 ^ ... ^ -Q1 ^ -Q2 ^ ... where P1, P2, ... are the atomic propositions set to true in that row, and Q1, Q2, ... those set to false. Then take all these sentences and "or" them, e.g.:
P Q R wff
T T T T -----> P ^ Q ^ R
T T F F
T F T T -----> P^ -Q ^ R
F T T F
T F F F
F T F T -----> -P ^ Q ^ -R
F F T F
F F F T -----> -P ^ -Q ^ -R
Then we get (P ^ Q ^ R) V (P^ -Q ^ R) V (-P ^ Q ^ -R) V (-P ^ -Q ^ -R)
Hopefully you can see why this works.