Showing entries 1 to 2
Displaying posts with tag: Data Editor (reset)
Mind data modifications via Data Editor in dbForge Studio for MySQL

Since one of our users has encountered a problem when modifying data via Data Editor, we decided to bring such a situation to our users’ attention.

Let’s assume you have the following table:

CREATE TABLE dept(
  DeptNo INT(10),
  DName VARCHAR(14),
  loc VARCHAR(13),
  Salsum FLOAT
);

Let’s execute the following query in the SQL document:

SELECT DName, loc FROM dept WHERE DeptNo = 20;

Now if you change any of the values of the first record in Data Editor, the changes will be applied to all records of the original table that have ‘DName’ = ‘Research’ and ‘loc’ = ‘Dallas’.

[Read more]
Mind data modifications via Data Editor in dbForge Studio for MySQL

Since one of our users has encountered a problem when modifying data via Data Editor, we decided to bring such a situation to our users’ attention. Let’s assume you have the following table: CREATE TABLE dept( DeptNo INT(10), DName VARCHAR(14), loc VARCHAR(13), Salsum FLOAT ); Let’s execute the following query in the SQL document: SELECT [...]

Showing entries 1 to 2