Answers for "t-sql get first 3"

SQL
2

get first 3 letters in sql

SELECT FIRST_NAME ,  SUBSTR(FIRST_NAME, 1 , 3 ) , LENGTH(FIRST_NAME)
FROM EMPLOYEES ;
Posted by: Guest on January-28-2021
1

sql only five first row

SELECT your_column
FROM your_table
WHERE your_condition
LIMIT 5; -- your limit of rows you want to show here
Posted by: Guest on May-05-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language