-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
1. What are the standard ingredients for each pizza? | ||
|
||
Bu soruda öncelikle `pizza_recipes` tablosunu yeniden düzenlemem gerekiyor. Toppings sütunundaki her bir değeri ayrı bir satırda göstermem gerekiyor. Bunu iki yolla yapabilirim. | ||
|
||
tablonun orjinal hali bu şekilde | ||
|
||
![image](https://github.com/user-attachments/assets/78c56123-e642-4f56-a254-aeaa22afb5d2) | ||
|
||
1. yol: Regex kullanarak virgülle ayrılmış değerlerin her birini ayrı bir satırda yazdırabilirm. | ||
|
||
```sql | ||
SELECT | ||
pizza_id, | ||
REGEXP_SPLIT_TO_TABLE(toppings, '[,\s]+')::INTEGER AS top_id | ||
FROM pizza_recipes | ||
``` | ||
bu kodda integer a cast etmemin sebebi regex bize string şeklinde çıktı verir. Bu yeni tabloyu başka bir tablo ile joinlemek istersem veri tipi uyuşmadığı için hata mesajı alırım. | ||
|
||
|
||
|