what is the difference between these 2 sql statements

demalegabi
select s.id,s.name,e.sem from student as s, enroll as e where s.id = e.id;

select s.id,s.name,e.sem from student join enroll using (id);

so these 2 statements get the same result, but what is the difference? is there any case where they are not the same?

demalegabi

they are the same thing, one is the old style while the other saves some time and typing.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What the difference between these generics statements?

From Dev

What is the difference between these import statements?

From Dev

What is difference between these two statements?

From Dev

What the difference between these generics statements?

From Dev

What is the difference between ( for... in ) and ( for... of ) statements?

From Java

What is the difference between ( for... in ) and ( for... of ) statements in JavaScript?

From Dev

What's the difference between these where statements?

From Dev

What's the difference between these two statements in Javascript?

From Dev

What is the difference between Expressions and Statements in Scala

From Dev

What is the difference between these two statements in Java?

From Dev

What is the difference between these two regular expression statements

From Dev

What is the difference between the following two statements?

From Dev

Benefit Of Repository and what is difference between two statements

From Dev

In Ruby what is the difference between different rescue statements?

From Dev

What is the difference between these two regular expression statements

From Dev

What's the difference between these two statements in Javascript?

From Dev

what is the difference between these two statements in R?

From Dev

What's the semantical difference between the two statements?

From Dev

Calculating the execution time difference between 2 statements

From Dev

What is the difference between these two print statements in Perl? And what is the if statement doing?

From Dev

what is the difference between >&2 and &>2

From Dev

What is the difference between `->>` and `->` in Postgres SQL?

From Dev

What is difference between != and <> in sql server

From Dev

What is difference between != and <> in sql server

From Dev

SQL: What's the difference between '=' and 'is'?

From Dev

What is the difference between these two SQL?

From Dev

What is the difference between these 2 structures

From Dev

What is difference between 2 functions

From Java

What's the difference between requires and requires transitive statements in Java 9?

Related Related

  1. 1

    What the difference between these generics statements?

  2. 2

    What is the difference between these import statements?

  3. 3

    What is difference between these two statements?

  4. 4

    What the difference between these generics statements?

  5. 5

    What is the difference between ( for... in ) and ( for... of ) statements?

  6. 6

    What is the difference between ( for... in ) and ( for... of ) statements in JavaScript?

  7. 7

    What's the difference between these where statements?

  8. 8

    What's the difference between these two statements in Javascript?

  9. 9

    What is the difference between Expressions and Statements in Scala

  10. 10

    What is the difference between these two statements in Java?

  11. 11

    What is the difference between these two regular expression statements

  12. 12

    What is the difference between the following two statements?

  13. 13

    Benefit Of Repository and what is difference between two statements

  14. 14

    In Ruby what is the difference between different rescue statements?

  15. 15

    What is the difference between these two regular expression statements

  16. 16

    What's the difference between these two statements in Javascript?

  17. 17

    what is the difference between these two statements in R?

  18. 18

    What's the semantical difference between the two statements?

  19. 19

    Calculating the execution time difference between 2 statements

  20. 20

    What is the difference between these two print statements in Perl? And what is the if statement doing?

  21. 21

    what is the difference between >&2 and &>2

  22. 22

    What is the difference between `->>` and `->` in Postgres SQL?

  23. 23

    What is difference between != and <> in sql server

  24. 24

    What is difference between != and <> in sql server

  25. 25

    SQL: What's the difference between '=' and 'is'?

  26. 26

    What is the difference between these two SQL?

  27. 27

    What is the difference between these 2 structures

  28. 28

    What is difference between 2 functions

  29. 29

    What's the difference between requires and requires transitive statements in Java 9?

HotTag

Archive