Meinst Du sowas wie unten im Beispiel? Ich habe für die entsprechende Spalte die Optionen `scientific-notation=true, round-integer-to-decimal` ergänzt und zur Demonstration die Eingabe auf nicht-wissenschaftliche Schreibweise geändert:
\documentclass[oneside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage[locale=DE]{siunitx}
\sisetup{
group-digits=true, %% Zifferngruppierung an/aus
group-separator=\, , %% Zeichen für Zifferngruppierung
group-minimum-digits=5, %% Ziffern ab # Ziffern gruppieren
detect-all %, %% Benutze gleiche Schriftarten wie im Text
}
\begin{document}
\begin{table}
\begin{tabular}{
S[table-format = 1.2e1]
>{\ttfamily}l
S[round-mode=places,
round-precision=1,
table-format = 1.1e1,
scientific-notation=true,
round-integer-to-decimal]
}
\toprule
{\begin{tabular}{c}
\textbf{jetziges} {Eingabe} & {Ausgabe} \\
\textbf{Format} \midrule
1,0E-06 & 1,0E-06 \\
\end{tabular}} &
{\begin{tabular}{c}
\textbf{gewünschtes} 3,60E-04 & 3,60E-04 \\
\textbf{Format} \\
manuell \ erstellt
\end{tabular}} \\
\midrule
1,0E-06 & 1,0E-06 \\
3,60E-04 & 3,60E-04 \\
0,0069 & 0,0069 \\
& 0,0069\\
0,0008 & 0,0008 \\
& 0,0008\\
1,70E-05 & 1,70E-05\\
\bottomrule
\end{tabular}
\end{table}
\end{document}
![alt text][1]
[1]: http://texwelt.de/wissen/upfiles/sci-not.pnghttp://texwelt.de/wissen/upfiles/sci-not_1.png