adspace
Explain the difference between 'between' & 'and' operators in sql
Answer Posted / Siddharth Kumar
The 'BETWEEN' operator is used to select records that fall within a specific range, and it includes the start and end values. For example: SELECT * FROM table WHERE column BETWEEN 1 AND 10.n The 'AND' operator is a logical operator used to combine multiple conditions in a WHERE clause. For example: SELECT * FROM table WHERE column1 = 'value1' AND column2 = 'value2'.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is bcp? When does it used? : Sql dba
how many tables will create when we create table, what are they? : Sql dba
what is collation? : Sql dba
Is primary key clustered index?
Can delete statement be rollbacked?
define sql insert statement ? : Sql dba
how to start mysql server? : Sql dba
Is primary key always clustered index?
What is your daily office routine?
how to use regular expression in pattern match conditions? : Sql dba
Is inner join faster than left join?
what is schema? : Sql dba
what are aggregate and scalar functions? : Sql dba
Do we need to rebuild index after truncate?
If a cursor is open, how can we find in a pl/sql block?