Brilliant! Also, she has a soothing voice and speaks fluently! Excellent video! 💛
@TT4eJIka4 жыл бұрын
really helpful tutorial! thank you
@ferhatozkan71344 жыл бұрын
thanks a lot !
@mohamed.montaser4 жыл бұрын
in your where clause what does 1 = 1 mean
@coupleracademy4 жыл бұрын
1=1 is used to save the query structure. For example, you first want to use SELECT... FROM...WHERE country="Poland". Then you've decided to remove the criterion. If you leave it SELECT...FROM...WHERE - it won't work. If you remove WHERE and decide to add it again later you will have to remember where to put it not to break the query. In case of WHERE 1=1 you don't have to edit the query structure every time and it doesn't influence the output.