SQL DATABASE BASIC QUERIES
SQL query for getting record using like keyword with multiple values? | Get Multiple Records with Like Query | Using Like query Get Multiple Records
//This the query will return which data having the first letter a, band z.SQL COMMAND :Select columnName From TableName Where columnName Like '[ABZ]%' //This query will return A to Z which data having the first latterA B, C......... Z.SQL COMMAND :Select columnName From TableName Where columnName Like '[A-B]%' |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.