- 2
SQL question
At the conclusion of a bank transaction, 6 checks are printed -- 3 originals for the bank, and 3 copies for the customer. Here is the list of all the checks named Operation and what am i doing wrong no critics pls im noob my code: SELECT DISTINCT checks, Check1, Check2, Check3, Check1, Check2, Check3 FROM check;
9 Antworten
+ 2
SELECT DISTINCT checks from operation;
+ 1
This Is the Answer :
SELECT DISTINCT checks FROM Operations
ORDER BY checks ASC
0
Max White is your problem solved??
0
thnks kyle
0
SELECT DISTINCT Checks FROM Operation
0
SELECT DISTINCT checks from operation;
0
SELECT DISTINCT operations.checks FROM Operations
ORDER BY checks
- 1
Can you share the screenshot of that problem, so we can assist you in more better way
- 1
Hey its so simple you need to just do this
select DISTINCT checks from operation;
Check1,check2.... Are the values for example purpose not to add in your code.