CitiusTech interview question

4. Write a SQL query for displaying all the names starting with A from the table.

Interview Answer

Anonymous

3 Nov 2018

Select names from abc where names like 'a%'

1