Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

select and condition in sql

//ex-List addresses of all branch offices in London or
Glasgow.//

SELECT *
FROM Branch
WHERE city = ‘London’ OR city = ‘Glasgow’;
 
PREVIOUS NEXT
Tagged: #select #condition #sql
ADD COMMENT
Topic
Name
6+8 =