在oracle sql中我想要输出如下。 列除以行,所以放x,否则放空..
示例:: - 1/100所以如果不是那么把x放空 我可以在sql中使用select语句查询吗? 如果100不分3,那就把它弄空了..
XYZ 1 2 3 4 5 ...
--- -- -- -- -- --
100 × × × ×
200 × × × ×
300 × × × × ×
400 × × × ×
它在数据库表中执行最多n列。 它完成数据库表中的所有n列。
它在数据库表中完成所有n列。
答案 0 :(得分:1)
您可以使用MOD()执行此操作,如下所示:
func textFieldDidEndEditing(_ textField: UITextField) {
if let textFieldText = textField.text {
print("textFieldText length - \(textFieldText.count)")
if (textFieldText.count < 2) {
showWarning(message: "Your message here")
}
}
}
func showWarning(message: String?){
// show warning message using UIAlertController here.
}