Most voted "dml" questions
DML - Data Manipulation Language - Data Manipulation Language. It’s the commands that interact with the data within the tables. DML : INSERT, DELETE and UPDATE commands
Learn more…3 questions
Sort by count of
-
2
votes1
answer2089
viewsALTER TABLE changing column name
When using ALTER TABLE to modify the column name in a table, we need to define the data type again: ALTER TABLE tabela CHANGE COLUMN nome_antigo novo_nome tipo_dados; If the data type is not…
-
0
votes0
answers31
viewsAlign populated values by columns using case when in mysql
As I could align the values in this SQL query per column, are 2 possible questions for each question in a list of several users who answered the first and second question: question one? answer a…
-
-1
votes1
answer46
viewsTrigger to prevent repeated data on ORACLE
Opa personal I am trying to create a Trigger to prevent the entry of repeated data in Oracle but am not succeeding. You cannot use Constraint Unique, because I will have repeated data, because it is…