Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #55.1K
~468 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for rosalyn cruz

hi ate CREATE TABLE statement is used to create a table in a database. Tables are organized into rows and columns; and each table must have a name. example:CREATE TABLE table_name ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), .... );

Member Avatar for chocolatte.lavista_1
0
111
Member Avatar for rosalyn cruz

hi ate LIKE operator is used in a WHERE clause to search for a specified pattern in a column,and also used to search for a specified pattern in a column. example:SELECT * FROM Customers WHERE Country NOT LIKE '%land%';

Member Avatar for chocolatte.lavista_1
0
134
Member Avatar for johnsapante

you can try this some of fuctions; Useful aggregate functions: AVG() - Returns the average value COUNT() - Returns the number of rows FIRST() - Returns the first value LAST() - Returns the last value MAX() - Returns the largest value MIN() - Returns the smallest value SUM() - Returns …

Member Avatar for rch1231
0
216

The End.