有没有办法使用oracle函数删除(截断)R中的表?我正在使用JDBC连接到oracle;我想截断内容,然后将新数据加载到表中。
例如:
select employee_info into variable_name;
这将执行该功能并将NULL
(如果成功)或error_message
加载到variable_name
。下一步...检查variable_name
的内容。如果是NULL
,请继续插入。
If variable_name IS NULL THEN
INSERT INTO
答案 0 :(得分:0)
是。您可以在Oracle中执行:
public class MyMaxLengthAttribute : MaxLengthAttribute
{
private static String CustomErrorMessage = "{0} length should not be more than {1}";
public MyMaxLengthAttribute(int length) : base(length)
{
ErrorMessage = "What should I input here"
}
public override string FormatErrorMessage(string name)
{
if (!String.IsNullOrEmpty(ErrorMessage))
{
ErrorMessage = MyErrorMessage;
}
return String.Format(CultureInfo.CurrentUICulture, CustomErrorMessage , name);
}
}
我不认识R但它应该是:
TRUNCATE TABLE employee_info