Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Access (https://www.askmehelpdesk.com/forumdisplay.php?f=441)
-   -   Vb (https://www.askmehelpdesk.com/showthread.php?t=438230)

  • Jan 23, 2010, 12:34 PM
    pumpkinslion
    vb
    which one of following commands allows you to select only records whose capital begins with the letter S?
    select fldCapital= "S" from tblState
    select * from tblState where fldCapital like "S%"
    select* from tblState where fldCapital = "S%"
    select* from tblState where fldCapital = "S*"
  • Feb 17, 2010, 05:07 AM
    _Rab_

    The SQL you are looking for is :

    Select * from tblState where fldCapital like "S*"

  • All times are GMT -7. The time now is 06:57 PM.