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
- __init__
- polynomial regression
- data distribution
- error
- MySQL
- line width
- train/test
- continue
- PROJECT
- Github
- For loops
- PANDAS
- AS
- pie charts
- Else
- iterates
- variables
- machine learning
- break
- line color
- self parameter
- start exercise
- matplotlib.pyplot
- Text mining
- multiple lines
- SQL
- Default X points
- Python
- Text Analytics
- matplotlib
Archives
- Today
- Total
목록Not (1)
Data Science Explorer

The NOT operator is used to give the opposite result (negative result). Example Select only the guests that are NOT from South Korea: SELECT * FROM Students WHERE NOT Country = 'South Korea'; Syntax SELECT column1, column2, ... FROM table_name WHERE NOT condition; NOT LIKE Example Select brands that does not start with the letter 'B': SELECT * FROM Brands WHERE BrandName NOT LIKE 'B%'; NOT BETWE..
SQL
2023. 10. 13. 18:24