With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" is "Peter"?
      
        
        
      
     
    
      
        
        
          
            - SELECT * FROM Persons WHERE FirstName<>'Peter'
 
          
            - SELECT * FROM Persons WHERE FirstName='Peter'
 
          
            - SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
 
          
            - SELECT [all] FROM Persons WHERE FirstName='Peter'
 
          
        
       
    
    
    
    
      Для просмотра статистики ответов нужно 
войти.