You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "ABHISHEK KUMAR GUPTA (Jira)" <ji...@apache.org> on 2019/08/29 09:23:00 UTC

[jira] [Created] (SPARK-28909) ANSI SQL: delete and update does not support in Spark

ABHISHEK KUMAR GUPTA created SPARK-28909:
--------------------------------------------

             Summary: ANSI SQL: delete and update does not support in Spark
                 Key: SPARK-28909
                 URL: https://issues.apache.org/jira/browse/SPARK-28909
             Project: Spark
          Issue Type: Sub-task
          Components: SQL
    Affects Versions: 3.0.0
            Reporter: ABHISHEK KUMAR GUPTA


delete and update supported in PostgresSQL

create table emp_test(id int);
insert into emp_test values(100);
insert into emp_test values(200);
select * from emp_test;
*delete from emp_test where id=100;*
select * from emp_test;
*update emp_test set id=500 where id=200;*
select * from emp_test;



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org