Alter Table Primary key - Crate DB
问题 I want to alter a table in my Crate DB to change the primary key constraint to add a column to the existing one. If I need to drop the constraint and create a new one what would be the SQL syntax for the same. I have been trying the conventional SQL syntax and it does not seem to work: alter table my_data_table drop primary key; the above command gives an error: SQLActionException[SQLParseException: line 1:34: no viable alternative at input 'alter table my_data_table drop'] I checked the