Arama Sonuçları: "#sqlcoding"

20 sonuç
Redgate Software
Redgate Software@redgate·
Prompt+ brings together the power of a generative #AI model, context-based insights and expertise in #SQLcoding to collaborate with you as you code. To learn more and sign up for our Early Access Program, visit: bit.ly/3TENmHo
Redgate Software tweet media
English
0
0
0
399
GIT Tech Hub
GIT Tech Hub@gittechhub·
*#SQLCoding-ton_Day_19* SELECT * FROM customers LIMIT 50; LIMIT clause in SQL is used to specify number of records to return. The query above retrieves only the first 50 rows from the customer table #share #learn #collaborate
English
0
0
0
22
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_17 SELECT department, COUNT(empID) FROM employee GROUP BY department GROUP BY in SQL is used to group rows based on one or more columns *In the example above It helps to determine the count of employees in each department.* #learn #share #collaborate
English
0
0
0
21
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_16 SELECT fname AS “First Name” FROM employee Aliases in SQL is used to give a table or column a temporal name using the AS keyword. *In the example above we gave the column fname an alias of First Name* #share #learn #collaborate #sql
English
0
0
0
23
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_15 SELECT name FROM country WHERE name LIKE ‘a%’ LIKE operator is used to search for a specified pattern in a column. It is often used with the ‘%’ wildcard symbol. *In the example above all country names that start with the letter ‘a’ will be retrieved*
English
0
1
0
24
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_14 SELECT MIN(amount) FROM salesTbl Aggregate function is used to perform calculations on set of values and return a single value (sum, count, max, min, avg) *MIN() function used above is to find the minimum sales amount* #learn #share #collaborate
English
0
0
0
7
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_12 SELECT COUNT(empID) FROM employee Aggregate function is used to perform calculations on set of values and return a single value (sum, count, max, min, avg) *COUNT() functions used above finds the count of employees*
English
0
0
0
14
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_11 SELECT AVG(amount) FROM salestbl Aggregate function is used to perform calculations on set of values and return a single value (sum, count, max, min, avg) *Average (AVG) functions used to find the average amount in the sales table*
English
0
0
1
12
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_10 SELECT SUM(amount) FROM salestbl Aggregate function is used to perform calculations on set of values and return a single value (sum, count, max, min, avg) *SUM functions used above sums values*
English
0
0
0
15
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_7 *SELECT * FROM employeeTbl WHERE city = “Accra” AND city = “Kumasi” In this example WHERE clause is combined with the comparison operator (=) and the logical operator (AND) to select employees in the city Accra and Kumasi
English
0
0
0
14
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_6 *SELECT * FROM employeeTbl WHERE city = “Accra” OR city = “Kumasi” In this example WHERE clause is combined with the comparison operator (=) and the logical operator (OR) to select employees in the city Accra or Kumasi
English
0
0
0
12
GIT Tech Hub
GIT Tech Hub@gittechhub·
#SQLCoding-ton_Day_2 *SELECT fname, lname, gender FROM table_name* This selects all rows based on the fname, lname and gender columns from a table in a database
English
0
0
0
23