Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- pie charts
- data distribution
- SQL
- matplotlib
- line color
- Default X points
- PROJECT
- Github
- PANDAS
- Text Analytics
- MySQL
- train/test
- variables
- Python
- machine learning
- For loops
- self parameter
- start exercise
- error
- iterates
- Else
- continue
- matplotlib.pyplot
- Text mining
- line width
- break
- polynomial regression
- __init__
- AS
- multiple lines
Archives
- Today
- Total
목록OR (1)
Data Science Explorer

The WHERE clause can contatin one or more OR operators which are used to filter records based on more than one condition. Example Select all students from South Korea to China: SELECT * FROM Students WHERE Country = 'South Korea' OR Country = 'China'; Syntax SELECT column1, column2, ... FROM table_name WHERE condition1 OR condition2 OR condition3 ...; At Least One Condition Must be True Example ..
SQL
2023. 10. 13. 18:00