Prepare command : PREPARE « Command MySQL « SQL / MySQL






Prepare command

       

PREPARE S1 FROM 'SELECT * FROM TEAMS';

EXECUTE S1;

   
    
    
    
    
    
    
  








Related examples in the same category

1.Pass value to sql with prepare
2.Pass two value to prepare