Posts by Marco Altran • 141 points
1 post
-
4
votes2
answers81
viewsA: which SQL command would display records where the Lastname field is "Duck" and the date in the Birthdate field is greater than 01/01/1950?
SELECT * FROM table WHERE LastName = 'Duck' AND BirthDate > DATE('1950-01-01'); Where table is the table name. See * will show all fields, if you want something specific, replace * by the name of…
mysqlanswered Marco Altran 141